-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathsetup.py
executable file
·26 lines (23 loc) · 968 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
#!/usr/bin/env python
"""Setup for ticketutil."""
from os import path
from setuptools import setup
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.rst')) as f:
long_description = f.read()
with open(path.join(this_directory, 'HISTORY.rst')) as f:
long_description += '\n{0}'.format(f.read())
setup(
name='ticketutil',
packages=['ticketutil'],
version='1.8.0',
description='Python ticketing utility supporting JIRA, RT, Redmine, Bugzilla, and ServiceNow',
long_description=long_description,
author='Danny Ranck',
author_email='[email protected]',
url='https://github.com/dmranck/ticketutil',
download_url='https://github.com/dmranck/ticketutil/tarball/1.8.0',
keywords=['jira', 'bugzilla', 'rt', 'redmine', 'servicenow', 'ticket', 'rest'],
install_requires=['gssapi>=1.2.0', 'requests>=2.6.0', 'requests-kerberos>=0.8.0'],
data_files=[('.', ['HISTORY.rst'])]
)