Spaces:
Sleeping
Sleeping
fix: add pyproject.toml for openenv validate
Browse files- pyproject.toml +28 -0
pyproject.toml
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[build-system]
|
| 2 |
+
requires = ["setuptools>=68.0"]
|
| 3 |
+
build-backend = "setuptools.backends.legacy:build"
|
| 4 |
+
|
| 5 |
+
[project]
|
| 6 |
+
name = "code-review-env"
|
| 7 |
+
version = "1.0.0"
|
| 8 |
+
description = "OpenEnv-compliant code review environment for AI agents"
|
| 9 |
+
readme = "README.md"
|
| 10 |
+
requires-python = ">=3.11"
|
| 11 |
+
license = {text = "MIT"}
|
| 12 |
+
keywords = ["openenv", "code-review", "reinforcement-learning", "agent"]
|
| 13 |
+
dependencies = [
|
| 14 |
+
"fastapi==0.111.0",
|
| 15 |
+
"uvicorn[standard]==0.29.0",
|
| 16 |
+
"pydantic==2.7.1",
|
| 17 |
+
"openai>=1.30.0",
|
| 18 |
+
"requests>=2.31.0",
|
| 19 |
+
"pyyaml>=6.0",
|
| 20 |
+
]
|
| 21 |
+
|
| 22 |
+
[project.urls]
|
| 23 |
+
Homepage = "https://huggingface.co/spaces/ColdHearted/CodeReviewenv"
|
| 24 |
+
Repository = "https://github.com/JanaKrisnaB/CodeReviewEnv"
|
| 25 |
+
|
| 26 |
+
[tool.setuptools.packages.find]
|
| 27 |
+
where = ["."]
|
| 28 |
+
include = ["tasks*", "graders*", "agents*"]
|