-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
51 lines (46 loc) · 1.14 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
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling"]
[project]
authors = [
{ email = "30631553+liblaf@users.noreply.github.com", name = "liblaf" },
]
dependencies = [
"anyio>=4.4.0",
"boltons>=24.0.0",
"httpx[socks]>=0.27.2",
"humanize>=4.10.0",
"lazy-loader>=0.4",
"loguru>=0.7.2",
"prettytable>=3.11.0",
"pydantic>=2.8.2",
"rich>=13.8.0",
"ubelt>=1.3.6",
"validators>=0.34.0",
]
description = "Add your description here"
license = "MIT"
name = "route-rules"
readme = "docs/README.md"
requires-python = ">=3.11"
version = "0.0.0"
[project.optional-dependencies]
docs = [
"black>=24.8.0",
"mkdocs-embed-external-markdown>=3.0.2",
"mkdocs-gen-files>=0.5.0",
"mkdocs-git-committers-plugin-2>=2.3.0",
"mkdocs-git-revision-date-localized-plugin>=1.2.7",
"mkdocs-literate-nav>=0.6.1",
"mkdocs-material[imaging]>=9.5.34",
"mkdocs-section-index>=0.3.9",
"mkdocs>=1.6.1",
"mkdocstrings-python>=1.11.1",
"mkdocstrings>=0.26.0",
]
[tool.hatch.build.targets.wheel]
packages = ["src/sbr"]
[tool.hatch.metadata]
allow-direct-references = true
[tool.uv]
dev-dependencies = ["icecream>=2.1.3", "marimo>=0.9.10"]