18 lines
421 B
TOML
18 lines
421 B
TOML
[project]
|
|
name = "dough-calc"
|
|
version = "0.1.0"
|
|
description = """Tiny utility to calculate proportion of flour, sourdough,
|
|
water and salt for a given dough."""
|
|
authors = [
|
|
{name = "iGor milhit", email = "igor@milhit.ch" },
|
|
]
|
|
readme = "README.md"
|
|
requires-python = ">=3.13"
|
|
dependencies = [
|
|
"fastapi>=0.128.0",
|
|
"httpx>=0.28.1",
|
|
"pytest>=9.0.2",
|
|
"ruff>=0.14.10",
|
|
"uvicorn>=0.40.0",
|
|
]
|