nostrdvm/setup.py

44 lines
1.6 KiB
Python
Raw Permalink Normal View History

from setuptools import setup, find_packages
VERSION = '0.3.5'
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. See the github repository for more information')
# Setting up
setup(
name="nostr-dvm",
version=VERSION,
author="Believethehype",
2023-12-13 22:46:21 +01:00
author_email="believethehypeonnostr@proton.me",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
2024-01-10 18:48:57 +01:00
packages=find_packages(include=['nostr_dvm', 'nostr_dvm.*']),
2024-04-15 11:06:46 +02:00
install_requires=["nostr-sdk==0.11.0",
"bech32",
2024-01-19 18:19:28 +01:00
"pycryptodome==3.20.0",
"python-dotenv==1.0.0",
"emoji==2.8.0",
"eva-decord==0.6.1",
"ffmpegio==0.8.5",
"lnurl",
"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",
2023-12-18 11:20:53 +01:00
"zipp==3.17.0",
"urllib3==2.1.0",
"typing_extensions>=4.9.0"
],
keywords=['nostr', 'nip90', 'dvm', 'data vending machine'],
2023-12-14 10:44:47 +01:00
url="https://github.com/believethehype/nostrdvm",
license="MIT",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Education",
"Programming Language :: Python :: 3",
]
)