-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (68 loc) · 1.71 KB
/
pyproject.toml
File metadata and controls
77 lines (68 loc) · 1.71 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "devtool"
version = "0.0.0"
description = "Tools for developers."
license = "Apache-2.0"
authors = [{ name = "The Flower Authors", email = "hello@flower.ai" }]
requires-python = ">=3.10"
dependencies = [
"black==25.11.0",
"PyYAML>=6.0.2,<7.0.0",
]
[dependency-groups]
dev = [
"clang-format==17.0.6",
"isort==5.13.2",
"taplo==0.9.3",
"docformatter==1.7.5",
"rope==1.13.0",
"semver==3.0.2",
"sphinx==7.4.7",
"sphinx-intl==2.2.0",
"sphinx-click==6.0.0",
"myst-parser==3.0.1",
"sphinx-design==0.6.1",
"sphinx-copybutton==0.5.2",
"sphinxcontrib-mermaid==0.9.2",
"sphinxcontrib-youtube==1.4.1",
"furo==2024.8.6",
"sphinx-reredirects==0.1.5",
"nbsphinx==0.9.5",
"nbstripout==0.6.1",
"sphinx-argparse==0.4.0",
"mdformat==1.0.0",
"mdformat-gfm==1.0.0",
"mdformat-frontmatter==2.0.10",
"mdformat-beautysh==1.0.0",
"beautysh==6.4.2",
"GitPython==3.1.32",
"sphinx-substitution-extensions==2022.2.16",
"sphinxext-opengraph==0.9.1",
"docstrfmt",
]
[tool.uv]
default-groups = ["dev"]
[tool.uv.sources]
docstrfmt = { git = "https://github.com/charlesbvll/docstrfmt.git", branch = "patch-2" }
[tool.hatch.build.targets.wheel]
packages = ["devtool"]
[tool.docstrfmt]
extend_exclude = [
"**/ts-ref-api/*",
"**/swift-ref-api/*",
"**/conf.py",
"**/_templates/autosummary/*",
]
[tool.isort]
profile = "black"
# `isort` treat "datasets" as first party by default
known_third_party = ["datasets"]
[tool.black]
line-length = 88
target-version = ["py39", "py310", "py311"]
[tool.docformatter]
wrap-summaries = 88
wrap-descriptions = 88