-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
103 lines (89 loc) · 2.57 KB
/
pyproject.toml
File metadata and controls
103 lines (89 loc) · 2.57 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
#:schema https://json.schemastore.org/pyproject.json
# ref: <https://packaging.python.org/en/latest/specifications/pyproject-toml/>
[project]
name = "route-rules"
description = ""
readme = "README.md"
requires-python = ">=3.12"
license = "MIT"
authors = [
{ name = "liblaf", email = "30631553+liblaf@users.noreply.github.com" }
]
keywords = []
classifiers = [
# ref: <https://pypi.org/classifiers/>
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Typing :: Typed"
]
dependencies = [
"anyio>=4,<5",
"autoregistry>=1,<2",
"cachetools>=7,<8",
"cachetools-async>=0.0.5,<0.0.6",
"cytoolz>=1,<2",
"hishel[httpx]>=1,<2",
"httpx[socks]>=0.28,<0.29",
"lazy-loader>=0.5,<0.6",
"liblaf-grapes>=9,<10",
"prettytable>=3,<4",
"python-slugify>=8,<9",
"validators>=0.35,<0.36"
]
dynamic = ["version"]
[project.urls]
"Changelog" = "https://github.com/liblaf/route-rules/blob/main/CHANGELOG.md"
"Documentation" = "https://liblaf.github.io/route-rules/"
"Funding" = "https://github.com/liblaf/route-rules?sponsor=1"
"Homepage" = "https://github.com/liblaf/route-rules"
"Issue Tracker" = "https://github.com/liblaf/route-rules/issues"
"Release Notes" = "https://github.com/liblaf/route-rules/releases"
"Source Code" = "https://github.com/liblaf/route-rules"
[dependency-groups]
dev = ["icecream>=2,<3"]
build = ["check-wheel-contents>=0.6,<0.7", "hatch>=1,<2", "twine>=6,<7"]
docs = [
"liblaf-mkdocs-preset>=0.3,<0.4",
"mkdocs>=1,<2",
"mkdocs-gen-files>=0.6,<0.7"
]
test = ["liblaf-pytest-preset>=0.1,<0.2", "pytest>=9,<10"]
[build-system]
requires = ["hatch-vcs", "hatchling"]
build-backend = "hatchling.build"
[tool.check-wheel-contents]
ignore = ["W002"]
[tool.coverage.run]
branch = true
source = ["src"]
[tool.hatch.build.hooks.vcs]
version-file = "src/route_rules/_version.py"
[tool.hatch.build.targets.sdist]
only-include = ["src"]
[tool.hatch.build.targets.wheel]
packages = ["src/route_rules"]
[tool.hatch.version]
source = "vcs"
[tool.pyright]
extends = ".config/linters/pyrightconfig.json"
[tool.pytest]
addopts = [
"--doctest-modules",
"--hypothesis-explain",
"--import-mode=importlib",
"--showlocals"
]
consider_namespace_packages = true
strict = true
testpaths = ["benches", "src", "tests"]
[tool.ruff]
extend = ".config/linters/.ruff.toml"
[tool.uv]
default-groups = "all"