-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (38 loc) · 1.28 KB
/
pyproject.toml
File metadata and controls
43 lines (38 loc) · 1.28 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
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pyusdt"
version = "0.1.1"
description = "Python profiler using USDT probes for low-overhead performance monitoring with bpftrace"
readme = "README.md"
requires-python = ">=3.12"
license = "Apache-2.0"
authors = [
{name = "Nathan Scott"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: C",
"Topic :: Software Development :: Debuggers",
"Topic :: System :: Monitoring",
]
keywords = ["profiling", "tracing", "usdt", "bpftrace", "ebpf", "monitoring"]
[project.urls]
Homepage = "https://github.com/natoscott/pyusdt"
Repository = "https://github.com/natoscott/pyusdt"
Issues = "https://github.com/natoscott/pyusdt/issues"
[tool.setuptools]
packages = ["pyusdt"]
[tool.cibuildwheel]
build = ["cp312-*", "cp313-*", "cp314-*"]
skip = "*-musllinux_*"
archs = ["x86_64", "aarch64"]
[tool.cibuildwheel.linux]
before-build = "yum install -y gcc python3-devel || apt-get install -y gcc python3-dev"