-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (36 loc) · 756 Bytes
/
pyproject.toml
File metadata and controls
43 lines (36 loc) · 756 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
40
41
42
43
[project]
name = "cache22"
version = "0.0.1"
description = "CLI for archiving Git repositories into Fossil"
requires-python = ">=3.14"
dependencies = [
"datasette>=1.0a26",
"tomli-w>=1.2.0",
"typer>=0.24.1",
]
[project.scripts]
cache22 = "cache22.cli:main"
[dependency-groups]
dev = [
"check-jsonschema>=0.36.2",
"pre-commit>=4.5.1",
"pyright>=1.1.408",
"pytest>=9.0.0",
"ruff>=0.15.4",
"yamllint>=1.38.0",
]
[tool.ruff]
line-length = 100
indent-width = 4
[tool.ruff.lint]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
docstring-code-format = true
line-ending = "lf"
[tool.pyright]
venvPath = "."
venv = ".venv"
[build-system]
requires = ["uv_build>=0.10.7,<0.11.0"]
build-backend = "uv_build"