Chirag0123 commited on
Commit
1f0f7d7
·
1 Parent(s): d505d26

chore: add pyproject.toml for multi-mode deployment packaging

Browse files
Files changed (1) hide show
  1. pyproject.toml +32 -0
pyproject.toml ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [build-system]
2
+ requires = ["setuptools>=61.0"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "codebase-nav-env"
7
+ version = "4.0.0"
8
+ description = "Codebase Navigation Repair OpenEnv: An AI reliability and navigation platform."
9
+ readme = "README.md"
10
+ requires-python = ">=3.10"
11
+ license = {text = "MIT"}
12
+ authors = [
13
+ {name = "Chirag Aswal"}
14
+ ]
15
+ dependencies = [
16
+ "fastapi",
17
+ "uvicorn[standard]",
18
+ "pydantic",
19
+ "openai",
20
+ "httpx",
21
+ "pytest",
22
+ "gradio>=4.0",
23
+ "huggingface_hub"
24
+ ]
25
+
26
+ [project.urls]
27
+ Homepage = "https://huggingface.co/spaces/Chirag0123/codebase-nav-env"
28
+ Repository = "https://github.com/Chirag0096/Codebase-Navigation-Repair-OpenEnv.git"
29
+
30
+ [tool.setuptools.packages.find]
31
+ include = ["*"]
32
+ exclude = ["repo_templates*"]