blob: e0b0e4d55fd136d70eb310f9db7e70210fad8ca7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
[build-system]
requires = ["maturin>=0.14,<0.15"]
build-backend = "maturin"
[project]
name = "slidge-style-parser"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
[project.urls]
Homepage = "https://github.com/BluebonnetField/slidge-style-parser"
Repository = "https://github.com/BluebonnetField/slidge-style-parser"
[tool.maturin]
features = ["pyo3/extension-module"]
|