Format
This commit is contained in:
parent
dcb03671f2
commit
17d0a41777
2
Makefile
2
Makefile
@ -5,5 +5,5 @@ help:
|
|||||||
format: ## Format Python
|
format: ## Format Python
|
||||||
black --exclude="/(dist|build|__pycache__|venv|\.git)/" .
|
black --exclude="/(dist|build|__pycache__|venv|\.git)/" .
|
||||||
|
|
||||||
test: ## Run tests
|
run.test: ## Run tests
|
||||||
pytest test/
|
pytest test/
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
FILE = "fiabledb.json"
|
FILE = "fiabledb.json"
|
||||||
|
|
||||||
|
|
||||||
def start(file=False):
|
def start(file=False):
|
||||||
file_name = file if file else FILE
|
file_name = file if file else FILE
|
||||||
print(file_name)
|
print(file_name)
|
||||||
|
21
setup.py
21
setup.py
@ -1,19 +1,20 @@
|
|||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name = 'fiable_db',
|
name="fiable_db",
|
||||||
py_modules=['fiable_db'],
|
py_modules=["fiable_db"],
|
||||||
version = 'VERSION',
|
version="VERSION",
|
||||||
python_requires='>3.7',
|
python_requires=">3.7",
|
||||||
description = ' Immutable NoSQL database in a plain file ',
|
description=" Immutable NoSQL database in a plain file ",
|
||||||
author = 'Andros Fenollosa',
|
author="Andros Fenollosa",
|
||||||
author_email = 'andros@fenollosa.email',
|
author_email="andros@fenollosa.email",
|
||||||
url = 'https://github.com/tanrax/fiableDB',
|
url="https://github.com/tanrax/fiableDB",
|
||||||
keywords = ['database', 'immutable', 'nosql', 'json'],
|
keywords=["database", "immutable", "nosql", "json"],
|
||||||
classifiers=[
|
classifiers=[
|
||||||
"Programming Language :: Python :: 3",
|
"Programming Language :: Python :: 3",
|
||||||
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
|
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
|
||||||
"Operating System :: OS Independent",
|
"Operating System :: OS Independent",
|
||||||
],
|
],
|
||||||
install_requires=[],
|
install_requires=[],
|
||||||
entry_points=''
|
entry_points="",
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user