-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
28 lines (26 loc) · 978 Bytes
/
pyproject.toml
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
[build-system]
requires = ["maturin>=1.3,<2.0"]
build-backend = "maturin"
[project]
name = "jsonpath_rust_bindings"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules"
]
dynamic = ["version"]
maintainer = "Igor Kalishevsky"
maintainer-email = "lilo.panic@@gmail.com"
project-url = { homepage = "https://github.com/night-crawler/jsonpath-rust-bindings" }
[tool.maturin]
features = ["pyo3/extension-module"]
maturin = "==1.3.1"