-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (31 loc) · 1009 Bytes
/
pyproject.toml
File metadata and controls
34 lines (31 loc) · 1009 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
34
[build-system]
requires = ["maturin>=1.12,<2.0"]
build-backend = "maturin"
[project]
name = "firedrake-rtree"
description = "C api for spatial indexing"
requires-python = ">=3.10"
classifiers = [
"Intended Audience :: Science/Research",
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
license = "MIT"
readme = "README.md"
maintainers = [
{ name = "Leo Collins", email = "l.collins24@imperial.ac.uk"},
]
dynamic = ["version"] # gets version from rtree-capi/Cargo.toml
[project.urls]
Repository = "https://github.com/firedrakeproject/firedrake-rtree"
[tool.maturin]
manifest-path = "rtree-capi/Cargo.toml"
features = ["python"]
python-source = "."
module-name = "firedrake_rtree"
include = [
{ path = "LICENSE", format = ["sdist", "wheel"] },
{ path = "README.md", format = ["sdist", "wheel"] },
{ path = "firedrake_rtree/include/*", format = ["sdist", "wheel"] },
]