nice-bill commited on
Commit
00aba02
·
1 Parent(s): b796c60

Add project config

Browse files
Files changed (1) hide show
  1. pyproject.toml +22 -0
pyproject.toml ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [project]
2
+ name = "defi-agents"
3
+ version = "0.1.0"
4
+ description = "Multi-agent LLM simulation in DeFi markets with emergent strategic arms races"
5
+ readme = "README.md"
6
+ requires-python = ">=3.11"
7
+ dependencies = [
8
+ "openai>=1.0.0",
9
+ "supabase>=2.0.0",
10
+ "fastapi>=0.109.0",
11
+ "uvicorn>=0.27.0",
12
+ "python-dotenv>=1.0.0",
13
+ "pydantic>=2.5.0",
14
+ "numpy>=1.26.0",
15
+ ]
16
+
17
+ [build-system]
18
+ requires = ["hatchling"]
19
+ build-backend = "hatchling.build"
20
+
21
+ [tool.hatch.build.targets.wheel]
22
+ packages = ["api", "core", "web", "scripts"]