-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
23 lines (20 loc) · 779 Bytes
/
Copy pathpyproject.toml
File metadata and controls
23 lines (20 loc) · 779 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[build-system]
requires = ["maturin>=1.7,<2"]
build-backend = "maturin"
[project]
name = "vor-profile"
description = "Headless profiling capture for Python: per-step metrics + flame scopes to a .vor stream, read back with the Rust vor tooling."
requires-python = ">=3.9"
license = { text = "MIT OR Apache-2.0" }
readme = "README.md"
keywords = ["profiling", "puffin", "gpu", "ml", "instrumentation"]
classifiers = ["Programming Language :: Rust"]
dynamic = ["version"]
[project.urls]
Repository = "https://github.com/SConsul/vor"
[tool.maturin]
# Mixed layout: the package lives in python/vor, the compiled extension
# lands at vor._vor. abi3 means one wheel per platform across CPythons.
module-name = "vor._vor"
python-source = "python"
features = ["pyo3/extension-module"]