-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
61 lines (54 loc) · 1.67 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[project]
name = "stacrs"
description = "A small, no-dependency Python package for STAC, using Rust under the hood."
readme = "README.md"
authors = [{ name = "Pete Gadomski", email = "[email protected]" }]
requires-python = ">=3.10"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Rust",
"Typing :: Typed",
]
keywords = ["stac", "geospatial"]
dynamic = ["version"]
[project.urls]
Repository = "https://github.com/gadomski/stacrs"
Documentation = "https://gadom.ski/stacrs"
Issues = "https://github.com/gadomski/stacrs/issues"
[tool.mypy]
files = "**/*.py"
[[tool.mypy.overrides]]
module = "pyarrow.*"
ignore_missing_imports = true
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
[tool.uv]
dev-dependencies = [
"maturin>=1.7.4",
"mike>=2.1.3",
"mkdocs-jupyter>=0.25.1",
"mkdocs-material[imaging]>=9.5.45",
"mkdocstrings[python]>=0.27.0",
"mypy>=1.11.2",
"pyarrow>=18.0.0",
"pystac[validation]>=1.11.0",
"pytest>=8.3.3",
"pytest-asyncio>=0.25.1",
"ruff>=0.6.9",
"stac-geoparquet>=0.6.0",
]
[build-system]
requires = ["maturin>=1.7,<2.0"]
build-backend = "maturin"
[tool.maturin]
features = ["pyo3/extension-module"]