work-blog/pyproject.toml
Gregory Gauthier 1396de6a7e feat(diagrams): add PNG diagrams for Testing Telos post
Update testing-telos.md with relative asset paths and refined content.
Add generated PNGs: telos-feature-iteration.png, telos-invariance-testing.png,
telos-cross-cutting.png, telos-targeted-concerns.png.
Introduce pyproject.toml and poetry.lock for diagram generation dependencies.
Add svg-to-png.py script for generating diagrams.
Rename drafts/testing-telos.html to references/testing-telos.html.
2026-04-17 11:46:40 +01:00

19 lines
383 B
TOML

[project]
name = "work-blog"
version = "0.1.0"
description = ""
authors = [
{name = "Gregory Gauthier",email = "gregory.gauthier@perspectum.com"}
]
readme = "README.md"
requires-python = "^3.14"
dependencies = [
"matplotlib (>=3.10.8,<4.0.0)",
"numpy (>=2.4.4,<3.0.0)"
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"