Spaces:
Running
Running
Create pyproject.toml
Browse files- pyproject.toml +17 -0
pyproject.toml
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[build-system]
|
| 2 |
+
requires = ["setuptools>=61.0"]
|
| 3 |
+
build-backend = "setuptools.build_meta"
|
| 4 |
+
|
| 5 |
+
[project]
|
| 6 |
+
name = "codereview-env"
|
| 7 |
+
version = "0.1.0"
|
| 8 |
+
description = "Code Review Environment for OpenEnv Hackathon"
|
| 9 |
+
authors = [
|
| 10 |
+
{name = "Developer"}
|
| 11 |
+
]
|
| 12 |
+
dependencies = [
|
| 13 |
+
"fastapi",
|
| 14 |
+
"pydantic",
|
| 15 |
+
"uvicorn",
|
| 16 |
+
"requests"
|
| 17 |
+
]
|