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
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pygitweb"
version = "1.0.0"
description = "Gitweb reimplementation with FastAPI and Pygit2"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"distgit",
"fastapi[standard-no-fastapi-cloud-cli]>=0.104.0",
"uvicorn[standard]>=0.24.0",
"python-multipart>=0.0.6",
"jinja2>=3.1.0",
"orjson>=0.19.0",
"pygit2>=1.12.0",
]
[tool.setuptools]
packages = ["pygitweb"]
[tool.setuptools.package-dir]
pygitweb = "."
[tool.setuptools.package-data]
pygitweb = ["templates/**/*", "static/**/*", "data/**/*"]
[tool.uv.sources]
distgit = { workspace = true }