mirror of
https://github.com/believethehype/nostrdvm.git
synced 2025-03-18 13:51:55 +01:00
38 lines
1.3 KiB
Python
38 lines
1.3 KiB
Python
from setuptools import setup, find_packages
|
|
|
|
VERSION = '0.0.1'
|
|
DESCRIPTION = 'A framework to build and run NIP90 Data Vending Machines'
|
|
LONG_DESCRIPTION = '-'
|
|
|
|
# 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']),
|
|
install_requires=["nostr-sdk==0.0.5",
|
|
"bech32==1.2.0",
|
|
"pycryptodome==3.19.0",
|
|
"python-dotenv==1.0.0",
|
|
"emoji==2.8.0",
|
|
"eva-decord==0.6.1",
|
|
"ffmpegio==0.8.5",
|
|
"lnurl==0.4.1",
|
|
"pandas==2.1.3",
|
|
"Pillow==10.1.0",
|
|
"PyUpload==0.1.4",
|
|
"requests==2.31.0",
|
|
"instaloader==4.10.1",
|
|
"pytube==15.0.0",
|
|
"moviepy==2.0.0.dev2"
|
|
],
|
|
keywords=['nostr', 'nip90', 'dvm', 'data vending machine'],
|
|
classifiers=[
|
|
"Development Status :: 3 - Alpha",
|
|
"Intended Audience :: Education",
|
|
"Programming Language :: Python :: 3",
|
|
]
|
|
) |