Spaces:
Sleeping
Sleeping
Update pyproject.toml
Browse files- pyproject.toml +7 -15
pyproject.toml
CHANGED
|
@@ -1,22 +1,14 @@
|
|
| 1 |
[project]
|
| 2 |
-
name = "traffic-signal-
|
| 3 |
version = "0.1.0"
|
| 4 |
-
description = "Traffic Signal
|
| 5 |
-
readme = "README.md"
|
| 6 |
-
requires-python = ">=3.10"
|
| 7 |
dependencies = [
|
| 8 |
-
"
|
| 9 |
-
"uvicorn>=0.20.0",
|
| 10 |
-
"numpy>=1.20.0",
|
| 11 |
-
"pydantic>=2.0.0",
|
| 12 |
"openenv-core>=0.2.0",
|
| 13 |
-
"
|
|
|
|
|
|
|
| 14 |
]
|
| 15 |
|
| 16 |
[project.scripts]
|
| 17 |
-
server = "server.app:
|
| 18 |
-
|
| 19 |
-
[build-system]
|
| 20 |
-
requires = ["hatchling"]
|
| 21 |
-
build-backend = "hatchling.build"
|
| 22 |
-
|
|
|
|
| 1 |
[project]
|
| 2 |
+
name = "traffic-signal-env"
|
| 3 |
version = "0.1.0"
|
| 4 |
+
description = "Smart Traffic Signal OpenEnv Environment"
|
|
|
|
|
|
|
| 5 |
dependencies = [
|
| 6 |
+
"openai",
|
|
|
|
|
|
|
|
|
|
| 7 |
"openenv-core>=0.2.0",
|
| 8 |
+
"fastapi",
|
| 9 |
+
"uvicorn",
|
| 10 |
+
"numpy"
|
| 11 |
]
|
| 12 |
|
| 13 |
[project.scripts]
|
| 14 |
+
server = "server.app:app"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|