-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (68 loc) · 1.78 KB
/
pyproject.toml
File metadata and controls
73 lines (68 loc) · 1.78 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
[project]
name = "robust-maturin-demo"
version = "0.13.0"
description = "robust-maturin-demo"
authors = [
{ name = "Kyle Oliver", email = "56kyleoliver+cookiecutter-robust-python@gmail.com" },
]
license = "MIT"
license-files = ["LICENSE"]
readme = "README.md"
requires-python = ">=3.10,<4.0"
keywords = [
"robust-maturin-demo",
]
classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Development Status :: 1 - Planning"
]
dependencies = [
"loguru>=0.7.3",
"platformdirs>=4.3.8",
"typer>=0.15.4",
"typing-extensions>=4.13.2"
]
[dependency-groups]
dev = [
"commitizen>=4.7.0",
"nox>=2025.5.1",
"pre-commit>=4.2.0",
"pre-commit-hooks>=5.0.0",
"ruff>=0.11.9",
"bandit>=1.8.3",
"pip-audit>=2.9.0",
"pytest>=8.3.5",
"pytest-cov>=6.1.1",
"basedpyright>=1.34.0",
]
docs = [
"furo>=2024.8.6",
"myst-parser>=3.0.1",
"sphinx>=7.4.7",
"sphinx-autobuild>=2024.10.3",
"sphinx-autodoc-typehints>=2.3.0",
"sphinx-copybutton>=0.5.2",
"sphinx-tabs>=3.4.7",
"sphinxcontrib-typer>=0.5.1",
]
[project.urls]
Homepage = "https://github.com/56kyle/robust-maturin-demo"
Repository = "https://github.com/56kyle/robust-maturin-demo"
[[tool.uv.index]]
name = "testpypi"
url = "https://test.pypi.org/simple/"
publish-url = "https://test.pypi.org/legacy/"
explicit = true
[build-system]
requires = ["maturin>=1.9.0,<2.0"]
build-backend = "maturin"
[tool.maturin]
rust-src = "rust"
manifest-path = "rust/Cargo.toml"