CoolFace
Apppublic

YashR05/pullrequest-arena

sourceHugging Facemitupdated 5mo agoView on Hugging Face
0likes
pyproject.toml23 linesDownload Raw Back to root
1[project]2name = "pullrequest-arena"3version = "1.0.0"4requires-python = ">=3.11"5dependencies = [6    "openenv-core>=0.1.0",7    "fastapi>=0.100.0",8    "uvicorn>=0.20.0",9    "pydantic>=2.0.0",10    "openai>=1.0.0",11    "gradio>=4.0.0",12]13 14[build-system]15requires = ["hatchling"]16build-backend = "hatchling.build"17 18[tool.hatch.build.targets.wheel]19packages = ["server", "client.py", "models.py", "__init__.py"]20 21[project.scripts]22server = "server.app:main"23