forked from atlassian-api/atlassian-python-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
67 lines (60 loc) · 2.35 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
import os
from setuptools import find_packages
from setuptools import setup
with open(os.path.join('atlassian', 'VERSION')) as file:
version = file.read().strip()
with open('README.rst') as file:
long_description = file.read()
setup(
name='atlassian-python-api',
description='Python Atlassian REST API Wrapper',
long_description=long_description,
license='Apache License 2.0',
version=version,
download_url='https://github.com/atlassian-api/atlassian-python-api',
author='Matt Harasymczuk',
author_email='matt@astrotech.io',
url='https://github.com/atlassian-api/atlassian-python-api',
keywords='atlassian jira confluence bitbucket bamboo crowd portfolio tempo teams servicedesk jsd rest api',
packages=find_packages(),
package_dir={'atlassian': 'atlassian'},
include_package_data=True,
zip_safe=False,
install_requires=[
'requests',
'six',
'oauthlib',
'requests_oauthlib'
],
extras_require={
'kerberos': ['kerberos-sspi ; platform_system=="Windows"',
'kerberos ; platform_system!="Windows"']
},
platforms='Platform Independent',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Operating System :: POSIX',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Utilities',
'Topic :: Internet',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Libraries :: Application Frameworks']
)