ChaitanyaRasane commited on
Commit
59e20d0
·
1 Parent(s): c5b1020

feat: add pyproject.toml for multi-mode deployment

Browse files
Files changed (1) hide show
  1. pyproject.toml +26 -0
pyproject.toml ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [build-system]
2
+ requires = ["setuptools>=61.0", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "ui-layout-optimizer"
7
+ version = "1.0.0"
8
+ description = "Adaptive UI Layout Optimization Environment (OpenEnv)"
9
+ readme = "README.md"
10
+ requires-python = ">=3.10"
11
+ license = {text = "MIT"}
12
+ dependencies = [
13
+ "openai",
14
+ "pydantic",
15
+ "numpy",
16
+ "fastapi",
17
+ "uvicorn",
18
+ "python-multipart"
19
+ ]
20
+
21
+ [project.urls]
22
+ Homepage = "https://huggingface.co/spaces/Kolaps27/UI-layout-optimizer"
23
+
24
+ [tool.setuptools]
25
+ py-modules = ["env", "baseline", "benchmark", "inference"]
26
+ packages = ["agents", "backend"]