-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (65 loc) · 2.01 KB
/
Copy pathpyproject.toml
File metadata and controls
71 lines (65 loc) · 2.01 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>=77", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "python-profiling"
version = "0.1.0"
description = "Backport of Python 3.15's profiling package and Tachyon sampling profiler"
readme = "README.md"
requires-python = ">=3.14,<3.16"
license = "PSF-2.0"
license-files = ["LICENSE"]
authors = [
{ name = "pythonbackport maintainers", email = "pythonbackport@proton.me" },
]
keywords = [
"cpython",
"flamegraph",
"performance",
"profiler",
"sampling",
"tachyon",
"tracing",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: C",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: 3.15",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Debuggers",
"Topic :: Software Development :: Testing",
"Topic :: System :: Monitoring",
]
[project.urls]
Homepage = "https://github.com/pythonbackport/python-profiling"
Documentation = "https://github.com/pythonbackport/python-profiling#readme"
Source = "https://github.com/pythonbackport/python-profiling"
Issues = "https://github.com/pythonbackport/python-profiling/issues"
Security = "https://github.com/pythonbackport/python-profiling/blob/master/.github/SECURITY.md"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = ["profiling*"]
[tool.setuptools.package-data]
"profiling.sampling" = [
"_assets/*.png",
"_flamegraph_assets/*.css",
"_flamegraph_assets/*.html",
"_flamegraph_assets/*.js",
"_heatmap_assets/*.css",
"_heatmap_assets/*.html",
"_heatmap_assets/*.js",
"_shared_assets/*.css",
"_shared_assets/*.js",
"_vendor/d3/7.8.5/*.js",
"_vendor/d3-flame-graph/4.1.3/*.css",
"_vendor/d3-flame-graph/4.1.3/*.js",
]