-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (28 loc) · 883 Bytes
/
pyproject.toml
File metadata and controls
33 lines (28 loc) · 883 Bytes
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
[project]
name = "otdrs"
dynamic = ["version"]
description = "File parser and writer for optical time-domain reflectometry interchange files (Bellcore SOR)"
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Rust",
"Topic :: File Formats",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[tool.uv]
cache-keys = [
{ file = "pyproject.toml" },
{ file = "rust/Cargo.toml" },
{ file = "**/*.rs" },
]
[tool.maturin]
# cargo-extra-args = "--features python"
features = ["pyo3/extension-module", "python"]
[dependency-groups]
dev = ["maturin>=1.9.2"]