-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (34 loc) · 1.18 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
import os
from setuptools import setup
this_dir = os.path.dirname(__file__)
long_description = "\n" + open(os.path.join(this_dir, 'README.rst')).read()
setup(
name='teamcity_cli',
version='0.0.0',
description='CLI for TeamCity CI server, built on pyteamcity',
long_description=long_description,
keywords='TeamCity',
author='Marc Abramowitz',
author_email='[email protected]',
url='https://github.com/SurveyMonkey/teamcity_cli',
py_modules=['teamcitycli'],
zip_safe=False,
install_requires=['click', 'colorclass', 'pyteamcity', 'terminaltables'],
entry_points="""\
[console_scripts]
teamcity_cli = teamcitycli:cli
""",
license='MIT',
classifiers=[
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Software Development :: Testing',
'Natural Language :: English',
'Intended Audience :: Developers',
],
)