Create setup.py
This commit is contained in:
parent
f43b6155ff
commit
1b5e470a97
19
setup.py
Normal file
19
setup.py
Normal file
@ -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=''
|
||||||
|
)
|
Loading…
Reference in New Issue
Block a user