kevanthonyP commited on
Commit
3515c23
·
verified ·
1 Parent(s): ab6a3f1

Create pyproject.toml

Browse files
Files changed (1) hide show
  1. pyproject.toml +23 -0
pyproject.toml ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [build-system]
2
+ requires = ["setuptools>=68.0"]
3
+ build-backend = "setuptools.backends.legacy:build"
4
+
5
+ [project]
6
+ name = "it-support-triage"
7
+ version = "1.0.0"
8
+ description = "IT Support Triage — OpenEnv RL Environment"
9
+ requires-python = ">=3.11"
10
+ dependencies = [
11
+ "fastapi==0.115.0",
12
+ "uvicorn[standard]==0.30.6",
13
+ "pydantic==2.8.2",
14
+ "openai==1.51.0",
15
+ "requests==2.32.3",
16
+ "pyyaml==6.0.2",
17
+ ]
18
+
19
+ [project.optional-dependencies]
20
+ dev = ["pytest", "httpx"]
21
+
22
+ [tool.setuptools.packages.find]
23
+ where = ["."]