2023-12-13 20:00:03 +01:00
|
|
|
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'
|
2024-05-06 12:16:41 +02:00
|
|
|
LONG_DESCRIPTION = ('A framework to build and run Nostr NIP90 Data Vending Machines. See the github repository for more information')
|
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,
|
2024-01-10 18:48:57 +01:00
|
|
|
packages=find_packages(include=['nostr_dvm', 'nostr_dvm.*']),
|
2024-05-31 10:27:18 +02:00
|
|
|
|
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",
|
2024-11-07 10:30:30 +01:00
|
|
|
"yt-dlp==2024.11.04",
|
2023-12-13 22:22:41 +01:00
|
|
|
"python-dotenv==1.0.0",
|
2024-06-14 18:50:04 +02:00
|
|
|
"emoji==2.12.1",
|
2024-06-14 10:34:59 +02:00
|
|
|
"ffmpegio==0.9.1",
|
2023-12-13 22:22:41 +01:00
|
|
|
"Pillow==10.1.0",
|
|
|
|
"PyUpload==0.1.4",
|
2024-06-21 16:14:37 +02:00
|
|
|
"pandas==2.2.2",
|
2024-06-14 18:50:04 +02:00
|
|
|
"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",
|
2024-06-14 18:50:04 +02:00
|
|
|
"networkx==3.3",
|
|
|
|
"scipy==1.13.1",
|
2025-02-15 21:03:42 +01:00
|
|
|
"typer==0.15.1",
|
2024-06-14 18:50:04 +02:00
|
|
|
"beautifulsoup4==4.12.3"
|
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",
|
|
|
|
]
|
|
|
|
)
|