spidey121 commited on
Commit
e77506b
·
1 Parent(s): b78cf55

Add pyproject.toml

Browse files
Files changed (1) hide show
  1. pyproject.toml +21 -0
pyproject.toml ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [project]
2
+ name = "ai-deception-openenv"
3
+ version = "0.1.0"
4
+ description = "AI Cyber Deception OpenEnv environment"
5
+ readme = "README.md"
6
+ requires-python = ">=3.9"
7
+
8
+ dependencies = [
9
+ "flask",
10
+ "requests",
11
+ "pydantic",
12
+ "openai",
13
+ "uvicorn"
14
+ ]
15
+
16
+ [build-system]
17
+ requires = ["setuptools>=61.0"]
18
+ build-backend = "setuptools.build_meta"
19
+
20
+ [tool.setuptools]
21
+ packages = ["env", "tasks"]