-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
43 lines (40 loc) · 1.55 KB
/
setup.py
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
from setuptools import setup, find_packages
VERSION = '0.9.11'
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",
author_email="believethehypeonnostr@proton.me",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
packages=find_packages(include=['nostr_dvm', 'nostr_dvm.*']),
install_requires=["nostr-sdk==0.36.0",
"bech32==1.2.0",
"pycryptodome==3.20.0",
"yt-dlp==2024.11.04",
"python-dotenv==1.0.0",
"emoji==2.12.1",
"ffmpegio==0.9.1",
"Pillow==10.1.0",
"PyUpload==0.1.4",
"pandas==2.2.2",
"requests==2.32.3",
"moviepy==2.0.0.dev2",
"zipp==3.19.1",
"urllib3==2.2.2",
"networkx==3.3",
"scipy==1.13.1",
"beautifulsoup4==4.12.3"
],
keywords=['nostr', 'nip90', 'dvm', 'data vending machine'],
url="https://github.com/believethehype/nostrdvm",
license="MIT",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Education",
"Programming Language :: Python :: 3",
]
)