-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (27 loc) · 837 Bytes
/
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
import setuptools
import cdbcli
setuptools.setup(
name="cdbcli",
version=cdbcli.__version__,
url="https://github.com/kevinjqiu/cdbcli",
author="Kevin J. Qiu",
author_email="[email protected]",
description="Interactive command line shell for CouchDB",
long_description=open('README.rst').read(),
packages=setuptools.find_packages(),
install_requires=[
req.strip() for req in open('requirements.txt').readlines() if req
],
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.4',
],
entry_points={
'console_scripts': [
'cdbcli=cdbcli.main:main'
]
},
)