-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
46 lines (41 loc) · 1.43 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
41
42
43
44
45
46
import os
import sys
from setuptools import setup, find_packages
install_requires = ['PyYAML']
version = sys.version_info[:2]
if version < (2,7) or (3,0) <= version <= (3,1):
install_requires += ['argparse']
this_dir = os.path.dirname(__file__)
long_description = "\n" + open(os.path.join(this_dir, 'README.rst')).read()
setup(
name='panci',
version='0.0.2',
description=('Convert between Travis-CI `.travis.yml` files and Tox `tox.ini` files'),
long_description=long_description,
keywords='tox, travis, continuous integration, CI',
author='Marc Abramowitz',
author_email='[email protected]',
url='https://github.com/msabramo/python-panci',
packages=find_packages(),
zip_safe=False,
install_requires=install_requires,
test_suite='panci.tests',
entry_points = """\
[console_scripts]
panci = panci.cli:main
panci-tox-quickstart = panci.toxquickstart:main
""",
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',
],
)