-
Notifications
You must be signed in to change notification settings - Fork 664
/
setup.py
67 lines (63 loc) · 2.74 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="[email protected]",
maintainer="Gonchik Tsymzhitov",
maintainer_email="[email protected]",
url="https://github.com/atlassian-api/atlassian-python-api",
keywords="atlassian jira core software confluence bitbucket bamboo crowd portfolio tempo servicedesk assets api",
packages=find_packages(include=["atlassian*"]),
package_dir={"atlassian": "atlassian"},
include_package_data=True,
zip_safe=False,
install_requires=["deprecated", "requests", "six", "oauthlib", "requests_oauthlib", "jmespath", "beautifulsoup4"],
extras_require={"kerberos": ["requests-kerberos"]},
platforms="Platform Independent",
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"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",
],
)