blog/pyproject.toml
Yax 3b7484fbe6 Replace JSON config with .env files
- Add python-dotenv dependency for environment variable loading
- Replace params.json and params-local.json with .env files
- Add --local and --local-stacosys flags to makesite.py
- Update Makefile to auto-detect stacosys availability
- Document configuration and usage in README.md
2026-01-10 16:03:53 +01:00

23 lines
421 B
TOML

[project]
name = "blog"
version = "1.2"
description = "Blog du Yax"
readme = "README.md"
authors = [
{ name = "Yax" }
]
requires-python = ">=3.12.9"
dependencies = [
"mistune>=3.0.2",
"pygments>=2.18.0",
"python-dotenv>=1.0.0",
"requests>=2.32.3",
]
[dependency-groups]
dev = [
"black>=24.10.0",
"mypy>=1.19.1",
"types-pygments>=2.19.0.20251121",
"types-requests>=2.32.4.20260107",
]