27 lines
609 B
TOML
27 lines
609 B
TOML
[project]
|
|
name = "git-activity-merge"
|
|
version = "0.1.0"
|
|
description = "FastAPI service that merges GitHub and Gitea contribution heatmaps and renders embeddable images."
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"fastapi>=0.115.0",
|
|
"uvicorn[standard]>=0.30.0",
|
|
"httpx>=0.27.0",
|
|
"pydantic-settings>=2.4.0",
|
|
"cairosvg>=2.7.1"
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=8.3.0",
|
|
"pytest-asyncio>=0.24.0",
|
|
"anyio>=4.4.0"
|
|
]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=68", "wheel"]
|
|
build-backend = "setuptools.build_meta" |