-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (27 loc) · 932 Bytes
/
pyproject.toml
File metadata and controls
30 lines (27 loc) · 932 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
[build-system]
requires = ["maturin>=1.8.4", "patchelf>=0.17.2.2"]
build-backend = "maturin"
[project]
name = "rust-code-analysis-python"
authors = [
{ name="Luigi Finetti", email="luigi@finetti.com.ar" }
]
license = "MPL-2.0"
dynamic = ["version"]
description = "Python bindings for rust-code-analysis"
readme = "README.md"
keywords = ["rust", "python", "code", "analysis", "complexity", "metrics", "refactoring"]
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Rust",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Compilers",
]
[project.urls]
"Bug Tracker" = "https://github.com/luigig44/rust-code-analysis-python/issues"
"Source Code" = "https://github.com/luigig44/rust-code-analysis-python"
[tool.maturin]
features = ["pyo3/extension-module"]
exclude = [".github/**/*"]