-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
36 lines (35 loc) · 1.41 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
from setuptools import setup
setup(
name="adaptavist",
description="python package providing functionality for Jira Test Management (tm4j)",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
use_scm_version=True,
url="https://github.com/devolo/adaptavist",
author="Stephan Steinberg, Guido Schmitz, Markus Bong",
author_email="[email protected], [email protected]",
license="MIT",
license_files=("LICENSE.md",),
packages=["adaptavist"],
package_data={"adaptavist": ["py.typed"]},
platforms="any",
python_requires=">=3.6",
install_requires=["importlib-metadata;python_version<'3.8'", "requests_toolbelt", "requests"],
extras_require={
"test": ["pytest", "requests-mock"],
"docs": ["m2r2", "pydata_sphinx_theme", "sphinx"],
},
setup_requires=["setuptools_scm"],
keywords="python adaptavist kanoah tm4j jira test testmanagement report",
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing",
"Topic :: Utilities",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)