forked from python-rt/python-rt
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
31 lines (28 loc) · 1.01 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
import os
try:
from setuptools import setup
except:
from distutils.core import setup
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.rst')).read()
setup(name='rt',
version='1.0.11',
description='Python interface to Request Tracker API',
long_description=README,
license='GNU General Public License (GPL)',
author='Jiri Machalek',
author_email='[email protected]',
url='https://github.com/CZ-NIC/python-rt',
install_requires=['requests', 'six'],
py_modules=['rt'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 3.2',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)