Meta / pyproject.toml
Nothing12Man's picture
fix: standardized server entry point with callable main function
5322eaf
raw
history blame contribute delete
484 Bytes
[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"]