-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (34 loc) · 980 Bytes
/
pyproject.toml
File metadata and controls
39 lines (34 loc) · 980 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
35
36
37
38
39
[build-system]
requires = ["maturin>=1.11,<2.0"]
build-backend = "maturin"
[project]
name = "python-matchit"
description = "Bindings for matchit rust library."
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
maintainers = [
{name = "Roman Tolkachyov", email = "roman@tolkachyov.name"}
]
license = "MIT"
dynamic = ["version"]
keywords = ["routing", "web", "url", "rust", "matchit", "bindings"]
[project.urls]
github = "https://github.com/romantolkachyov/python-matchit"
releasenotes = "https://github.com/romantolkachyov/python-matchit/releases"
issues = "https://github.com/romantolkachyov/python-matchit/issues"
[dependency-groups]
dev = [
"maturin>=1.11.5",
"python-matchit",
]
[tool.uv.workspace]
members = [
".",
]
[tool.uv.sources]
python-matchit = { workspace = true }