31 lines
511 B
TOML
31 lines
511 B
TOML
[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 = []
|