| [build-system] |
| requires = ["setuptools>=68", "wheel"] |
| build-backend = "setuptools.build_meta" |
|
|
| [project] |
| name = "code-review-agent-env" |
| version = "1.0.0" |
| description = "OpenEnv code review environment for agent evaluation" |
| readme = "README.md" |
| requires-python = ">=3.10" |
| license = "MIT" |
| authors = [ |
| { name = "Ashish" }, |
| { name = "Shardul" }, |
| { name = "Harshit" } |
| ] |
| dependencies = [ |
| "openenv>=0.1.0", |
| "pydantic>=2.0.0", |
| "openai>=1.0.0", |
| "requests>=2.31.0", |
| "python-dotenv>=1.0.0" |
| ] |
|
|
| [project.scripts] |
| server = "server.app:main" |
|
|
| [tool.pytest.ini_options] |
| testpaths = ["tests"] |
| addopts = "-v" |
|
|