forked from atlassian-api/atlassian-python-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
51 lines (44 loc) · 1.8 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
import sys
from setuptools import find_packages
from setuptools import setup
setup(
name='atlassian-python-api',
description='Python Atlassian REST API Wrapper',
long_description='Python Atlassian REST API Wrapper',
license='Apache License 2.0',
version='0.14.0',
download_url='https://github.com/MattAgile/atlassian-python-api',
author='Matt Harasymczuk',
author_email='code@mattagile.com',
url='http://mattagile.com/',
packages=find_packages(),
package_data={'': ['LICENSE', 'README.rst'], 'atlassian': ['*.py']},
package_dir={'atlassian': 'atlassian'},
include_package_data=True,
zip_safe=False,
install_requires=['requests>=2.7.0'],
platforms='Platform Independent',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'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 :: 3',
'Programming Language :: Python :: 3.0',
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Internet',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Libraries :: Application Frameworks']
)