DataDetective / pyproject.toml
Viani's picture
Deploy DataDetective: 9-task business investigation environment
bcd8636 verified
raw
history blame contribute delete
636 Bytes
[project]
name = "data_detective_env"
version = "1.0.0"
description = "DataDetective: Business incident investigation environment for OpenEnv"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"openenv-core>=0.2.0",
"fastapi>=0.104.0",
"uvicorn>=0.24.0",
"pydantic>=2.0.0",
"websockets>=12.0",
]
[project.optional-dependencies]
dev = ["pytest", "httpx"]
inference = ["openai>=1.0.0"]
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.backends._legacy:_Backend"
[tool.setuptools.packages.find]
include = ["data_detective_env*"]
[project.scripts]
server = "server.app:main"