-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (53 loc) · 1.18 KB
/
pyproject.toml
File metadata and controls
63 lines (53 loc) · 1.18 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
[project]
name = "envisaged"
version = "0.2.0"
description = "Nix-first Git history visualizations powered by Gource + FFmpeg"
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
authors = [{ name = "utensils" }]
dependencies = [
"fastapi>=0.116.0",
"jinja2>=3.1.6",
"python-multipart>=0.0.20",
"rich>=13.9.0",
"typer>=0.16.0",
"uvicorn>=0.35.0",
]
[project.scripts]
envisaged = "envisaged.cli:main"
envisaged-web = "envisaged.web:main"
[dependency-groups]
dev = [
"pyright>=1.1.390",
"ruff>=0.12.10",
]
[build-system]
requires = ["hatchling>=1.27.0"]
build-backend = "hatchling.build"
[tool.hatch.build]
include = [
"src/envisaged/web_templates/*.html",
]
[tool.hatch.build.targets.wheel]
packages = ["src/envisaged"]
[tool.uv]
default-groups = ["dev"]
[tool.ruff]
target-version = "py311"
line-length = 100
src = ["src"]
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM", "RUF"]
ignore = ["E501", "B008", "UP032"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
[tool.pyright]
pythonVersion = "3.11"
typeCheckingMode = "basic"
include = ["src"]
venvPath = "."
venv = ".venv"
reportMissingImports = true
reportMissingTypeStubs = false