This commit is contained in:
Andros Fenollosa 2022-11-09 16:59:42 +01:00
parent dcb03671f2
commit 17d0a41777
3 changed files with 18 additions and 16 deletions

View File

@ -5,5 +5,5 @@ help:
format: ## Format Python
black --exclude="/(dist|build|__pycache__|venv|\.git)/" .
test: ## Run tests
run.test: ## Run tests
pytest test/

View File

@ -1,5 +1,6 @@
FILE = "fiabledb.json"
def start(file=False):
file_name = file if file else FILE
print(file_name)

View File

@ -1,19 +1,20 @@
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'],
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=''
entry_points="",
)