This commit is contained in:
Félix Dorn 2025-04-26 23:38:19 +02:00
parent 8c0b53a32c
commit 19bf2e6b18
9 changed files with 2675 additions and 1 deletions

31
pyproject.toml Normal file
View file

@ -0,0 +1,31 @@
[project]
name = "sprint-econtai"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"dotenv>=0.9.9",
"jupyter>=1.1.1",
"notebook>=7.4.1",
"openai>=1.76.0",
"openpyxl>=3.1.5",
"pandas>=2.2.3",
"requests>=2.32.3",
"tqdm>=4.67.1",
]
[tool.pytest.ini_options]
pythonpath="src"
addopts="-v"
asyncio_mode = "auto"
[tool.black]
line-length = 100
[tool.isort]
profile = "black"
[dependency-groups]
dev = []