Spaces:
Sleeping
Sleeping
Commit ·
23444e1
1
Parent(s): d157d6a
fix: add pyproject.toml for multi-mode deployment
Browse files- pyproject.toml +20 -0
pyproject.toml
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[project]
|
| 2 |
+
name = "openenv-customer-support-agent"
|
| 3 |
+
version = "0.1.0"
|
| 4 |
+
description = "Customer Support Agent OpenEnv Environment"
|
| 5 |
+
authors = [
|
| 6 |
+
{ name = "P Matlani" }
|
| 7 |
+
]
|
| 8 |
+
dependencies = [
|
| 9 |
+
"fastapi",
|
| 10 |
+
"uvicorn",
|
| 11 |
+
"pydantic"
|
| 12 |
+
]
|
| 13 |
+
|
| 14 |
+
[build-system]
|
| 15 |
+
requires = ["setuptools", "wheel"]
|
| 16 |
+
build-backend = "setuptools.build_meta"
|
| 17 |
+
|
| 18 |
+
[tool.setuptools.packages.find]
|
| 19 |
+
where = ["."]
|
| 20 |
+
|