Spaces:
Sleeping
Sleeping
File size: 830 Bytes
1f0f7d7 e40cf69 1f0f7d7 e40cf69 1f0f7d7 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | [build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "codebase-nav-env"
version = "4.0.0"
description = "Codebase Navigation Repair OpenEnv: An AI reliability and navigation platform."
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
authors = [
{name = "Chirag Aswal"}
]
dependencies = [
"fastapi",
"uvicorn[standard]",
"pydantic",
"openai",
"httpx",
"pytest",
"gradio>=4.0",
"huggingface_hub",
"openenv-core>=0.2.0"
]
[project.scripts]
server = "server.app:main"
[project.urls]
Homepage = "https://huggingface.co/spaces/Chirag0123/codebase-nav-env"
Repository = "https://github.com/Chirag0096/Codebase-Navigation-Repair-OpenEnv.git"
[tool.setuptools.packages.find]
include = ["*"]
exclude = ["repo_templates*"]
|