Spaces:
Sleeping
Sleeping
Commit ·
7572550
1
Parent(s): adcc94e
fix: add pyproject.toml for multi-mode deployment compliance
Browse files- pyproject.toml +22 -0
pyproject.toml
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[build-system]
|
| 2 |
+
requires = ["setuptools>=61.0"]
|
| 3 |
+
build-backend = "setuptools.build_meta"
|
| 4 |
+
|
| 5 |
+
[project]
|
| 6 |
+
name = "lifeline-ai"
|
| 7 |
+
version = "1.0.0"
|
| 8 |
+
description = "LifeLine AI OpenEnv healthcare triage environment"
|
| 9 |
+
readme = "README.md"
|
| 10 |
+
requires-python = ">=3.11"
|
| 11 |
+
authors = [
|
| 12 |
+
{ name = "Mallikarjun" }
|
| 13 |
+
]
|
| 14 |
+
|
| 15 |
+
dependencies = [
|
| 16 |
+
"fastapi",
|
| 17 |
+
"uvicorn",
|
| 18 |
+
"pydantic"
|
| 19 |
+
]
|
| 20 |
+
|
| 21 |
+
[tool.setuptools]
|
| 22 |
+
packages = ["backend"]
|