pragunk commited on
Commit
74b5937
·
verified ·
1 Parent(s): b43b186

Create pyproject.toml

Browse files
Files changed (1) hide show
  1. pyproject.toml +17 -0
pyproject.toml ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [build-system]
2
+ requires = ["setuptools>=61.0"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "adaptive-cache-env"
7
+ version = "1.0.0"
8
+ description = "An OpenEnv-compliant adaptive cache eviction simulator."
9
+ readme = "README.md"
10
+ requires-python = ">=3.10"
11
+ dependencies = [
12
+ "numpy>=2.1.0",
13
+ "pydantic>=2.9.0",
14
+ "openai>=1.55.0",
15
+ "fastapi==0.110.0",
16
+ "uvicorn==0.27.1"
17
+ ]