This commit is contained in:
Félix Dorn 2025-07-03 16:26:30 +02:00
commit 2da206d368
17 changed files with 955 additions and 0 deletions

28
pyproject.toml Normal file
View file

@ -0,0 +1,28 @@
[project]
name = "sprint-econtai"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"matplotlib>=3.10.3",
"pandas>=2.2.3",
"pydantic>=2.11.7",
"python-dotenv>=1.1.1",
"seaborn>=0.13.2",
]
[tool.pytest.ini_options]
pythonpath = "src"
addopts = "-v"
asyncio_mode = "auto"
[tool.black]
line-length = 100
[tool.isort]
profile = "black"
[dependency-groups]
dev = []