2023-12-13 20:00:03 +01:00
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
2023-12-18 10:03:45 +01:00
|
|
|
VERSION = '0.0.6'
|
2023-12-18 09:27:01 +01:00
|
|
|
DESCRIPTION = 'A framework to build and run Nostr NIP90 Data Vending Machines'
|
|
|
|
LONG_DESCRIPTION = ('A framework to build and run Nostr NIP90 Data Vending Machines. '
|
2023-12-13 22:51:56 +01:00
|
|
|
'This is an early stage release. Interfaces might change/brick')
|
2023-12-13 20:00:03 +01:00
|
|
|
|
|
|
|
# Setting up
|
|
|
|
setup(
|
|
|
|
name="nostr-dvm",
|
|
|
|
version=VERSION,
|
|
|
|
author="Believethehype",
|
2023-12-13 22:46:21 +01:00
|
|
|
author_email="believethehypeonnostr@proton.me",
|
2023-12-13 20:00:03 +01:00
|
|
|
description=DESCRIPTION,
|
|
|
|
long_description=LONG_DESCRIPTION,
|
2023-12-18 10:03:45 +01:00
|
|
|
packages=find_packages(include=['nostr_dvm', 'nostr_dvm.backends', 'nostr_dvm.interfaces', 'nostr_dvm.tasks',
|
|
|
|
'nostr_dvm.utils', 'nostr_dvm.utils.scrapper']),
|
2023-12-13 22:22:41 +01:00
|
|
|
install_requires=["nostr-sdk==0.0.5",
|
|
|
|
"bech32==1.2.0",
|
|
|
|
"pycryptodome==3.19.0",
|
|
|
|
"python-dotenv==1.0.0",
|
|
|
|
"emoji==2.8.0",
|
|
|
|
"eva-decord==0.6.1",
|
|
|
|
"ffmpegio==0.8.5",
|
|
|
|
"lnurl==0.4.1",
|
|
|
|
"pandas==2.1.3",
|
|
|
|
"Pillow==10.1.0",
|
|
|
|
"PyUpload==0.1.4",
|
|
|
|
"requests==2.31.0",
|
|
|
|
"instaloader==4.10.1",
|
|
|
|
"pytube==15.0.0",
|
2023-12-15 09:43:43 +01:00
|
|
|
"moviepy==2.0.0.dev2",
|
|
|
|
"zipp==3.17.0"
|
2023-12-13 22:22:41 +01:00
|
|
|
],
|
2023-12-13 20:00:03 +01:00
|
|
|
keywords=['nostr', 'nip90', 'dvm', 'data vending machine'],
|
2023-12-14 10:44:47 +01:00
|
|
|
url="https://github.com/believethehype/nostrdvm",
|
|
|
|
license="MIT",
|
2023-12-13 20:00:03 +01:00
|
|
|
classifiers=[
|
|
|
|
"Development Status :: 3 - Alpha",
|
|
|
|
"Intended Audience :: Education",
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
]
|
|
|
|
)
|