Commit ·
1bc79d6
1
Parent(s): f22517f
Final Commit
Browse files- pyproject.toml +25 -0
pyproject.toml
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[build-system]
|
| 2 |
+
requires = ["setuptools", "wheel"]
|
| 3 |
+
build-backend = "setuptools.build_meta"
|
| 4 |
+
|
| 5 |
+
[project]
|
| 6 |
+
name = "acre-openenv"
|
| 7 |
+
version = "1.0.0"
|
| 8 |
+
description = "Autonomous Code Refactoring Environment using OpenEnv"
|
| 9 |
+
authors = [
|
| 10 |
+
{ name = "Pranav Mangal" }
|
| 11 |
+
]
|
| 12 |
+
dependencies = [
|
| 13 |
+
"fastapi",
|
| 14 |
+
"uvicorn",
|
| 15 |
+
"pydantic",
|
| 16 |
+
"openai",
|
| 17 |
+
"gymnasium"
|
| 18 |
+
]
|
| 19 |
+
|
| 20 |
+
[tool.setuptools.packages.find]
|
| 21 |
+
where = ["."]
|
| 22 |
+
|
| 23 |
+
[tool.openenv]
|
| 24 |
+
entry_point = "server.py"
|
| 25 |
+
|