-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
32 lines (29 loc) · 1.05 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
from setuptools import setup
import couchdb2
setup(
name="CouchDB2",
version=couchdb2.__version__,
description=couchdb2.__doc__.split("\n")[0],
long_description=open("README.md", "r").read(),
long_description_content_type="text/markdown",
url="https://github.com/pekrau/CouchDB2",
author="Per Kraulis",
author_email="[email protected]",
license="MIT",
python_requires=">= 3.6",
py_modules=["couchdb2"],
install_requires=["requests>=2.26", "tqdm>=4.62"],
entry_points={"console_scripts": ["couchdb2=couchdb2:main"]},
classifiers=[
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Natural Language :: English",
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Operating System :: OS Independent",
"Environment :: Console",
"Topic :: Database :: Front-Ends",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)