-
Notifications
You must be signed in to change notification settings - Fork 22
/
setup.py
29 lines (28 loc) · 1.11 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
from setuptools import find_packages, setup
setup(
name="dt",
version="1.1.67",
packages=find_packages(),
install_requires=["requests>=2.22"],
tests_require=["pytest", "mock", "tox"],
python_requires=">=3.6",
author="David Lopes",
author_email="[email protected]",
description="Dynatrace API Python client",
long_description="Dynatrace API Python client",
url="https://github.com/dlopes7/dynatrace-rest-python",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved",
"License :: OSI Approved :: Apache Software License", # 2.0
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: Implementation :: CPython",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Topic :: Software Development",
],
project_urls={"Issue Tracker": "https://github.com/dlopes7/dynatrace-rest-python/issues"},
)