feat: math expression language implementation

This commit is contained in:
2026-01-29 22:12:40 +01:00
parent f7c34448bb
commit ad9c3af0ac
11 changed files with 646 additions and 0 deletions

22
pyproject.toml Normal file
View File

@@ -0,0 +1,22 @@
[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"
dependencies = []
[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",
]