-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (47 loc) · 1.49 KB
/
pyproject.toml
File metadata and controls
52 lines (47 loc) · 1.49 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
[project]
name = "oracletrace"
version = "2.0.0"
description = "Detect Python performance regressions and compare execution traces with lightweight call graph visualization"
authors = [
{ name = "Kayk Caputo" },
{ name = "André Gustavo" }
]
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.10"
dependencies = ["rich"]
[dependency-groups]
dev = ["mypy", "pytest"]
keywords = [
"python profiler",
"performance regression",
"execution trace",
"call graph",
"performance comparison",
"benchmark comparison",
"trace analyzer",
"python performance tool",
"ci performance testing",
"lightweight profiler"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Topic :: Software Development :: Debuggers",
"Topic :: Software Development :: Testing",
"Topic :: System :: Monitoring",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent"
]
[project.scripts]
oracletrace = "oracletrace.cli:main"
[project.urls]
Homepage = "https://kaykcaputo.github.io/oracletrace/"
Repository = "https://github.com/KaykCaputo/oracletrace"
Documentation = "https://kaykcaputo.github.io/oracletrace/"
Issues = "https://github.com/KaykCaputo/oracletrace/issues"