nostrdvm/setup.py

44 lines
1.6 KiB
Python
Raw Normal View History

from setuptools import setup, find_packages
2025-02-20 13:41:31 +01:00
VERSION = '1.1.2'
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.*']),
2025-02-01 19:35:39 +01:00
install_requires=["nostr-sdk==0.39.0",
2024-06-12 10:54:44 +02:00
"bech32==1.2.0",
2024-01-19 18:19:28 +01:00
"pycryptodome==3.20.0",
"yt-dlp==2024.11.04",
"python-dotenv==1.0.0",
"emoji==2.12.1",
2024-06-14 10:34:59 +02:00
"ffmpegio==0.9.1",
"Pillow==10.1.0",
"PyUpload==0.1.4",
2024-06-21 16:14:37 +02:00
"pandas==2.2.2",
"requests==2.32.3",
2025-02-10 21:00:40 +01:00
"moviepy==2.0.0",
2024-11-07 10:32:54 +01:00
"zipp==3.19.1",
"urllib3==2.2.2",
"networkx==3.3",
"scipy==1.13.1",
"typer==0.15.1",
"beautifulsoup4==4.12.3"
],
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",
]
)