umar-sharif821 commited on
Commit
9c51de3
·
1 Parent(s): d100658

fix: add pyproject.toml for openenv validate

Browse files
Files changed (1) hide show
  1. pyproject.yaml +24 -0
pyproject.yaml ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [build-system]
2
+ requires = ["setuptools>=68.0", "wheel"]
3
+ build-backend = "setuptools.backends.legacy:build"
4
+
5
+ [project]
6
+ name = "cdn-cache-optimizer"
7
+ version = "1.0.0"
8
+ description = "Edge CDN Cache Optimizer - OpenEnv RL Environment"
9
+ requires-python = ">=3.11"
10
+ dependencies = [
11
+ "fastapi==0.111.0",
12
+ "uvicorn==0.29.0",
13
+ "pydantic==2.7.1",
14
+ "openai==1.30.1",
15
+ "requests==2.31.0",
16
+ "python-multipart==0.0.9",
17
+ ]
18
+
19
+ [project.optional-dependencies]
20
+ dev = ["pytest", "httpx"]
21
+
22
+ [tool.setuptools.packages.find]
23
+ where = ["."]
24
+ include = ["env*", "api*"]