2022-11-09 12:24:11 +01:00
|
|
|
from setuptools import setup
|
2022-11-09 16:59:42 +01:00
|
|
|
|
2022-11-09 12:24:11 +01:00
|
|
|
setup(
|
2022-11-09 16:59:42 +01:00
|
|
|
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=[
|
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 16:59:42 +01:00
|
|
|
],
|
|
|
|
install_requires=[],
|
|
|
|
entry_points="",
|
2022-11-09 12:24:11 +01:00
|
|
|
)
|