-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (28 loc) · 969 Bytes
/
Copy pathpyproject.toml
File metadata and controls
33 lines (28 loc) · 969 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 = "rpmrepo_metadata"
dynamic = ["version"]
description = "Python bindings for rpmrepo_metadata: create and parse RPM repository metadata"
license = "MPL-2.0"
license-files = ["LICENSE.txt"]
readme = "README_PYTHON.md"
requires-python = ">=3.10"
keywords = ["rpm", "packaging"]
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: 3",
"Topic :: System :: Archiving :: Packaging",
]
[project.urls]
Homepage = "https://github.com/dralley/rpmrepo_metadata"
Repository = "https://github.com/dralley/rpmrepo_metadata"
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[tool.maturin]
# Enable the `python_ext` feature (includes pyo3/extension-module).
features = ["python_ext"]
# The Python module name — must match the #[pymodule] fn name in src/python.rs.
module-name = "rpmrepo_metadata"
[tool.ruff]
line-length = 120