restructure to move towards pypi package

This commit is contained in:
Believethehype
2023-12-13 20:00:03 +01:00
parent c10f5439e5
commit 3056c07c15
38 changed files with 204 additions and 195 deletions

26
setup.py Normal file
View File

@@ -0,0 +1,26 @@
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(
# the name must match the folder name 'verysimplemodule'
name="nostr-dvm",
version=VERSION,
author="Believethehype",
author_email="-",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
packages=find_packages(),
install_requires=[], # add any additional packages that
# needs to be installed along with your package. Eg: 'caer'
keywords=['nostr', 'nip90', 'dvm', 'data vending machine'],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Education",
"Programming Language :: Python :: 3",
]
)