-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (66 loc) · 1.96 KB
/
pyproject.toml
File metadata and controls
70 lines (66 loc) · 1.96 KB
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
68
69
70
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "tracekit-apm"
version = "1.4.1"
description = "TraceKit APM for Python - Zero-config distributed tracing and code monitoring for Flask, FastAPI, and Django"
readme = "README.md"
authors = [
{name = "TraceKit", email = "support@tracekit.dev"}
]
license = {text = "MIT"}
keywords = [
"tracekit",
"apm",
"tracing",
"monitoring",
"opentelemetry",
"flask",
"fastapi",
"django",
"performance",
"observability"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"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",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Monitoring",
]
requires-python = ">=3.8"
dependencies = [
"opentelemetry-api>=1.20.0",
"opentelemetry-sdk>=1.20.0",
"opentelemetry-exporter-otlp-proto-http>=1.20.0",
"opentelemetry-instrumentation>=0.41b0",
"opentelemetry-instrumentation-requests>=0.41b0",
"opentelemetry-instrumentation-urllib>=0.41b0",
"opentelemetry-instrumentation-urllib3>=0.41b0",
"requests>=2.28.0",
]
[project.optional-dependencies]
flask = ["flask>=2.0.0"]
fastapi = ["fastapi>=0.100.0", "starlette>=0.27.0"]
django = ["django>=3.2"]
all = [
"flask>=2.0.0",
"fastapi>=0.100.0",
"starlette>=0.27.0",
"django>=3.2"
]
[project.urls]
Homepage = "https://tracekit.dev"
Documentation = "https://app.tracekit.dev/docs/languages/python"
Repository = "https://github.com/Tracekit-Dev/python-apm"
Issues = "https://github.com/Tracekit-Dev/python-apm/issues"
[tool.setuptools.packages.find]
where = ["."]
include = ["tracekit*"]