-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathsetup.py
More file actions
46 lines (43 loc) · 1.69 KB
/
Copy pathsetup.py
File metadata and controls
46 lines (43 loc) · 1.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
from setuptools import setup, find_packages
VERSION = '1.1.8'
DESCRIPTION = 'A framework to build and run Nostr NIP90 Data Vending Machines. Unrecommended by fiatjaf.'
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",
author_email="believethehypeonnostr@proton.me",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
packages=find_packages(include=['nostr_dvm', 'nostr_dvm.*']),
install_requires=["nostr-sdk==0.45.1",
"bech32==1.2.0",
"yt-dlp==2026.8.19",
"python-dotenv==1.2.3",
"emoji==2.15.0",
"ffmpegio==0.9.1",
"ffmpegio-core==0.10.0",
"pillow==12.3.0",
"PyUpload==0.1.4",
"pandas==2.2.2",
"requests==2.34.2",
"zipp==3.19.1",
"urllib3==2.7.0",
"networkx==3.3",
"scipy==1.13.1",
"rich==15.0.0",
"beautifulsoup4==4.15.0",
"tqdm==4.70.0"
],
extras_require={"openai": ["openai>=1.55.3,<2"]},
keywords=['nostr', 'nip90', 'dvm', 'data vending machine'],
url="https://github.com/believethehype/nostrdvm",
license="MIT",
python_requires='>=3.10',
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Education",
"Programming Language :: Python :: 3",
]
)