-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
44 lines (40 loc) · 1.17 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
[project]
name = "hydraters"
version = "0.1.2"
description = "Hydrate Python dictionaries with Rust."
readme = "README.md"
requires-python = ">=3.9"
license = { file = "LICENSE" }
authors = [
{ name = "David Bitner", email = "[email protected]" },
{ name = "Pete Gadomski", email = "[email protected]" },
]
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
[project.urls]
Repository = "https://github.com/developmentseed/hydraters"
[tool.maturin]
features = ["pyo3/extension-module"]
[build-system]
requires = ["maturin>=1.7,<2.0"]
build-backend = "maturin"
[dependency-groups]
dev = [
"maturin>=1.7.4",
"mike>=2.1.3",
"mkdocs-material[imaging]>=9.5.44",
"mkdocstrings-python>=1.12.2",
"mkdocstrings>=0.27.0",
"mypy>=1.13.0",
"pre-commit>=3.5.0",
"pytest>=8.3.3",
"ruff>=0.7.3",
]