28 lines
461 B
TOML
28 lines
461 B
TOML
[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 = []
|