-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
29 lines (28 loc) · 854 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
from setuptools import setup
setup(
name='btrc',
version='3.2.1',
description='Couchbase view stats collector',
author='Pavel Paulau',
author_email='pavel.paulau@gmail.com',
py_modules=['btrc'],
entry_points={
'console_scripts': ['btrc = btrc:main']
},
install_requires=[
'logger',
'requests==2.1.0',
],
setup_requires=[],
tests_require=[],
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Development Status :: 5 - Production/Stable',
'Environment :: Other Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)