-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
36 lines (33 loc) · 1022 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
29
30
31
32
33
34
35
36
[build-system]
requires = ["maturin>=1.6,<2.0", "patchelf>=0.17"]
build-backend = "maturin"
[project]
name = "rusterize"
description = "High performance rasterization tool for Python built in Rust"
readme = "README.md"
requires-python = ">=3.10"
license = {file = "LICENSE"}
keywords = ["fast", "raster"]
author = {name = "Tommaso Trotto", email = "ttrotto@mail.ubc.ca"}
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dynamic = ["version"]
dependencies = [
"geopandas>=1.0.1",
"pandas>=2.2.3",
"pyarrow>=18.1.0",
"polars>=1.19.0",
"xarray>=2025.01.1",
"rioxarray>=0.18.2"
]
[project.urls]
repository = "https://github.com/ttrotto/rusterize"
[tool.maturin]
python-source = "python"
module-name = "rusterize"
include = [{ path = "rust-toolchain.toml", format = "sdist" }]