forked from pycontribs/jira
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·46 lines (42 loc) · 1.48 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
#!/usr/bin/env python
from setuptools import setup, find_packages
exec(open('jira/version.py').read())
setup(
name='jira', # was jira-python
version=__version__,
packages=find_packages(exclude=['tests', 'tools']),
include_package_data=True,
# test_suite='nose.collector',
install_requires=['requests>=1.2.3',
'requests_oauthlib>=0.3.3',
'tlslite>=0.4.4',
'six>=1.5.2'],
setup_requires=[],
tests_require=['tlslite>=0.4.4', 'xmlrunner>=1.7.3', 'requests>=1.2.3', 'setuptools', 'tox', 'pep8', 'autopep8',
'sphinx', 'six>=1.5.2'],
extras_require={
'magic': ['filemagic>=1.6'],
'shell': ['ipython>=0.13'],
},
entry_points={
'console_scripts':
['jirashell = tools.jirashell:main'],
},
url='http://bitbucket.org/bspeakmon/jira-python',
license='BSD',
description='A library to ease use of the JIRA 5 REST APIs.',
long_description=open("README.rst").read(),
author='Ben Speakmon',
author_email='[email protected]',
provides=['jira'],
keywords='jira atlassian rest api',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Topic :: Internet :: WWW/HTTP',
],
)