Revrse commited on
Commit
95fbf2f
·
1 Parent(s): b25939a

add: pyproject.toml for package metadata

Browse files
Files changed (1) hide show
  1. pyproject.toml +15 -0
pyproject.toml ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [build-system]
2
+ requires = ["setuptools>=68"]
3
+ build-backend = "setuptools.backends.legacy:build"
4
+
5
+ [project]
6
+ name = "openenv-vuln"
7
+ version = "1.0.0"
8
+ description = "OpenEnv-compatible injection-based vulnerability environment"
9
+ requires-python = ">=3.11"
10
+ dependencies = [
11
+ "openai>=1.0.0",
12
+ "fastapi>=0.110.0",
13
+ "uvicorn>=0.29.0",
14
+ "pyyaml>=6.0",
15
+ ]