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
|
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "srht-contrib"
version = "0.1.0"
description = "SourceHut contribution calendar API built with FastAPI"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"fastapi>=0.115,<1.0",
"uvicorn[standard]>=0.30,<1.0",
"httpx>=0.27,<1.0",
"sqlalchemy>=2.0.51,<3.0",
"alembic>=1.13,<2.0",
"pydantic>=2.13.4,<3.0",
"pydantic-settings>=2.3,<3.0",
"apscheduler>=3.11.3,<4.0",
]
[project.optional-dependencies]
dev = [
"pytest>=9.0.3",
]
[project.scripts]
srht-enqueue-actors = "srht_contrib.scripts.enqueue_actors:main"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]
|