Spaces:
Sleeping
Sleeping
File size: 636 Bytes
bcd8636 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | [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"
|