Spaces:
Sleeping
Sleeping
Commit ·
652f070
1
Parent(s): dcc8fa3
Add pyproject.toml for OpenEnv validation compliance
Browse files- pyproject.toml +22 -0
pyproject.toml
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[build-system]
|
| 2 |
+
requires = ["setuptools>=68.0", "wheel"]
|
| 3 |
+
build-backend = "setuptools.build_meta"
|
| 4 |
+
|
| 5 |
+
[project]
|
| 6 |
+
name = "codearena-rl-benchmark"
|
| 7 |
+
version = "1.0.0"
|
| 8 |
+
description = "RL Benchmark for Autonomous Code Repair — an OpenEnv-compatible environment"
|
| 9 |
+
readme = "README.md"
|
| 10 |
+
requires-python = ">=3.10"
|
| 11 |
+
authors = [
|
| 12 |
+
{ name = "Aditya Santosh Naik" }
|
| 13 |
+
]
|
| 14 |
+
dependencies = [
|
| 15 |
+
"fastapi>=0.100.0",
|
| 16 |
+
"uvicorn[standard]>=0.23.0",
|
| 17 |
+
"pydantic>=2.0.0",
|
| 18 |
+
"openai>=1.0.0",
|
| 19 |
+
]
|
| 20 |
+
|
| 21 |
+
[tool.setuptools.packages.find]
|
| 22 |
+
include = ["server*", "tasks*"]
|