fiableDB/setup.py
Andros Fenollosa 66c76ce56a
Update setup.py
2022-11-09 13:46:58 +01:00

20 lines
617 B
Python

from setuptools import setup
setup(
name = 'fiable_db',
py_modules=['fiable_db'],
version = 'VERSION',
python_requires='>3.7',
description = ' Immutable NoSQL database in a plain file ',
author = 'Andros Fenollosa',
author_email = 'andros@fenollosa.email',
url = 'https://github.com/tanrax/fiableDB',
keywords = ['database', 'immutable', 'nosql', 'json'],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
],
install_requires=[],
entry_points=''
)