-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (30 loc) · 829 Bytes
/
Copy pathsetup.py
File metadata and controls
32 lines (30 loc) · 829 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="nosqllite",
version="0.1.3",
description="A simple nosql data base",
url="https://github.com/AxelGard/nosqllite",
author="Axel Gard",
author_email="axel.gard@tutanota.com",
license="MIT",
packages=["nosqllite"],
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=[
],
extras_require={
'dev': [
'pytest',
"black",
]
},
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Database",
"Topic :: Database :: Database Engines/Servers",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: MIT License",
],
)