Spaces:
Running
Running
Update pyproject.toml
Browse files- pyproject.toml +7 -3
pyproject.toml
CHANGED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
[build-system]
|
| 2 |
-
requires = ["
|
| 3 |
-
build-backend = "
|
| 4 |
|
| 5 |
[project]
|
| 6 |
name = "codereview-env"
|
|
@@ -13,5 +13,9 @@ dependencies = [
|
|
| 13 |
"fastapi",
|
| 14 |
"pydantic",
|
| 15 |
"uvicorn",
|
| 16 |
-
"requests"
|
|
|
|
| 17 |
]
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
[build-system]
|
| 2 |
+
requires = ["hatchling"]
|
| 3 |
+
build-backend = "hatchling.build"
|
| 4 |
|
| 5 |
[project]
|
| 6 |
name = "codereview-env"
|
|
|
|
| 13 |
"fastapi",
|
| 14 |
"pydantic",
|
| 15 |
"uvicorn",
|
| 16 |
+
"requests",
|
| 17 |
+
"openenv-core>=0.2.0"
|
| 18 |
]
|
| 19 |
+
|
| 20 |
+
[project.scripts]
|
| 21 |
+
server = "server.app:start"
|