From 1b5e470a976759e7030ff7faa6035ab7dae8b894 Mon Sep 17 00:00:00 2001 From: Andros Fenollosa Date: Wed, 9 Nov 2022 12:24:11 +0100 Subject: [PATCH] Create setup.py --- setup.py | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..1144045 --- /dev/null +++ b/setup.py @@ -0,0 +1,19 @@ +from setuptools import setup +setup( + name = 'fiable_db', + py_modules=['fiable_db'], + version = '0.0.1', + 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 License", + "Operating System :: OS Independent", + ), + install_requires=[], + entry_points='' +)