Spaces:
Sleeping
Sleeping
File size: 484 Bytes
7572550 4dc3c1d 7572550 4dc3c1d 5322eaf 4dc3c1d 7572550 4dc3c1d | 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 | [build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "lifeline-ai"
version = "1.0.0"
description = "LifeLine AI OpenEnv healthcare triage environment"
readme = "README.md"
requires-python = ">=3.11"
authors = [
{ name = "Mallikarjun" }
]
dependencies = [
"fastapi",
"uvicorn",
"pydantic",
"openenv-core>=0.2.0"
]
[project.scripts]
server = "server.app:main"
[tool.setuptools]
packages = ["backend", "server"]
|