forked from dynatrace-oss/api-client-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
52 lines (49 loc) · 1.63 KB
/
pyproject.toml
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
[tool.poetry]
name = "dt"
version = "1.1.72"
description = "Dynatrace API Python client"
readme = "README.md"
authors = ["David Lopes <davidribeirolopes@gmail.com>"]
maintainers = [
"David Lopes <davidribeirolopes@gmail.com>",
"James Kitson <james.kitson@dynatrace.com>",
"Vagiz Duseev <vagiz@duseev.com>"
]
homepage = "https://github.com/dynatrace-oss/api-client-python"
repository = "https://github.com/dynatrace-oss/api-client-python"
documentation = "https://github.com/dynatrace-oss/api-client-python"
packages = [
{ include = "dynatrace*" }
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"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",
"Programming Language :: Python :: Implementation :: CPython",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Topic :: Software Development",
]
[tool.poetry.dependencies]
python = ">=3.6"
requests = ">=2.22"
[tool.poetry.group.dev.dependencies]
pytest = "*"
mock = "*"
tox = "*"
wrapt = "*"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"