19 lines
383 B
TOML
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"
|