Spaces:
Sleeping
Sleeping
File size: 516 Bytes
72de9a9 a4715a7 | 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 29 30 31 32 | [build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "api-debug-env"
version = "0.1.0"
requires-python = ">=3.10"
dependencies = [
"openenv-core",
"fastapi",
"uvicorn[standard]",
"pydantic",
"websockets",
"openai",
]
[project.scripts]
server = "server.app:main"
[tool.hatch.build.targets.wheel]
packages = ["."]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = ["--import-mode=importlib"]
[dependency-groups]
dev = [
"pytest>=9.0.2",
]
|