Spacexpedition commited on
Commit
3290d9e
·
verified ·
1 Parent(s): 359c2ff

Upload pyproject.toml

Browse files
Files changed (1) hide show
  1. pyproject.toml +27 -0
pyproject.toml ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [build-system]
2
+ requires = ["setuptools>=61.0"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "mail-triage-v4-security-eval"
7
+ version = "2.0.0"
8
+ description = "A high-fidelity security evaluation environment for email triage."
9
+ readme = "README.md"
10
+ requires-python = ">=3.10"
11
+ license = {text = "MIT"}
12
+ authors = [
13
+ {name = "Security Agent Team"}
14
+ ]
15
+ dependencies = [
16
+ "openenv-core==0.2.3",
17
+ "fastapi>=0.109.0",
18
+ "uvicorn>=0.27.0",
19
+ "pydantic>=2.11.7",
20
+ "openai>=2.30.0",
21
+ ]
22
+
23
+ [project.urls]
24
+ "Homepage" = "https://huggingface.co/spaces/YOUR_USERNAME/YOUR_SPACE_NAME"
25
+
26
+ [tool.setuptools]
27
+ py-modules = ["env", "models", "inference"]