2022-11-09 12:24:11 +01:00
|
|
|
from setuptools import setup
|
|
|
|
setup(
|
|
|
|
name = 'fiable_db',
|
|
|
|
py_modules=['fiable_db'],
|
2022-11-09 13:04:54 +01:00
|
|
|
version = 'VERSION',
|
2022-11-09 12:24:11 +01:00
|
|
|
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'],
|
2022-11-09 13:46:58 +01:00
|
|
|
classifiers=[
|
2022-11-09 12:24:11 +01:00
|
|
|
"Programming Language :: Python :: 3",
|
2022-11-09 12:48:50 +01:00
|
|
|
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
|
2022-11-09 12:24:11 +01:00
|
|
|
"Operating System :: OS Independent",
|
2022-11-09 13:46:58 +01:00
|
|
|
],
|
2022-11-09 12:24:11 +01:00
|
|
|
install_requires=[],
|
|
|
|
entry_points=''
|
|
|
|
)
|