-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
40 lines (37 loc) · 1.53 KB
/
setup.py
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
33
34
35
36
37
38
39
40
from setuptools import setup
import __info__
with open("README.md") as fh:
long_description = fh.read()
setup(
name='nosqlapi',
version=__info__.__version__,
packages=['nosqlapi', 'nosqlapi.kvdb', 'nosqlapi.docdb', 'nosqlapi.common', 'nosqlapi.graphdb',
'nosqlapi.columndb'],
package_data={'nosqlapi.common': ['py.typed', '*.pyi'],
'nosqlapi.kvdb': ['py.typed', '*.pyi'],
'nosqlapi.columndb': ['py.typed', '*.pyi'],
'nosqlapi.docdb': ['py.typed', '*.pyi'],
'nosqlapi.graphdb': ['py.typed', '*.pyi']},
url=__info__.__homepage__,
license='GNU General Public License v3.0',
author=__info__.__author__,
author_email=__info__.__email__,
maintainer=__info__.__author__,
maintainer_email=__info__.__email__,
description='nosqlapi is a library for building standard NOSQL python libraries.',
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Topic :: Database",
"Topic :: Database :: Database Engines/Servers",
"Topic :: Database :: Front-Ends",
"Topic :: Software Development :: User Interfaces",
"Typing :: Stubs Only"
],
python_requires='>=3.6'
)