-
Notifications
You must be signed in to change notification settings - Fork 30
/
pyproject.toml
48 lines (43 loc) · 1.27 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "autodynatrace"
dynamic = ["version"]
description = "Auto instrumentation for the OneAgent SDK"
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.6"
authors = [
{ name = "David Lopes", email = "[email protected]" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved",
"License :: OSI Approved :: Apache Software License",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: System :: Monitoring",
]
dependencies = [
"autowrapt>=1.0",
"oneagent-sdk>=1.3.0",
"six>=1.10.0",
"wrapt>=1.11.2",
]
[project.entry-points.autodynatrace]
string = "autodynatrace:load"
[project.urls]
Homepage = "https://github.com/dlopes7/autodynatrace"
"Issue Tracker" = "https://github.com/dlopes7/autodynatrace/issues"
[tool.hatch.version]
path = "autodynatrace/__about__.py"
[tool.hatch.build.targets.sdist]
include = [
"/autodynatrace",
]