Files
function-plotter/pyproject.toml

25 lines
441 B
TOML
Raw Normal View History

[project]
name = "plotter"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
authors = [
{ name = "Domenico Testa", email = "domenico.testa@gmail.com" }
]
requires-python = ">=3.12"
2026-01-29 22:46:34 +01:00
dependencies = [
"matplotlib>=3.10.8",
]
[project.scripts]
plotter = "plotter:main"
[build-system]
requires = ["uv_build>=0.9.27,<0.10.0"]
build-backend = "uv_build"
[dependency-groups]
dev = [
"pytest>=9.0.2",
]