-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
96 lines (85 loc) · 1.53 KB
/
Copy pathpyproject.toml
File metadata and controls
96 lines (85 loc) · 1.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
[project]
name = "openui-eval"
version = "0.1.0"
description = "Evaluation suite for OpenUI models"
authors = [{ name = "Anas Khan", email = "anxkhn28@gmail.com" }]
requires-python = ">=3.11"
dependencies = [
# Core dependencies
"ollama",
"google-genai",
"selenium",
"chromedriver-autoinstaller",
"requests",
"pyyaml",
"tqdm",
"psutil",
# Additional dependencies for multi-provider support
"python-dotenv",
# CLI framework
"typer",
# Data handling and validation
"pydantic",
"pandas",
"numpy",
# Image processing
"pillow",
# Logging and utilities
"click",
"rich",
# HTML processing
"beautifulsoup4",
"lxml",
# Other dependencies
"annotated-types",
"anyio",
"attrs",
"cachetools",
"certifi",
"charset-normalizer",
"google-auth",
"h11",
"httpcore",
"httpx",
"idna",
"iniconfig",
"lxml",
"markdown-it-py",
"mdurl",
"mypy-extensions",
"numpy",
"outcome",
"packaging",
"pathspec",
"platformdirs",
"pluggy",
"pyasn1",
"pyasn1-modules",
"pydantic-core",
"pygments",
"pysocks",
"python-dateutil",
"pytokens",
"pytz",
"rsa",
"six",
"sniffio",
"sortedcontainers",
"soupsieve",
"tenacity",
"trio",
"trio-websocket",
"typing-extensions",
"typing-inspection",
"tzdata",
"urllib3",
"websocket-client",
"websockets",
"wsproto"
]
[project.scripts]
openui-eval = "cli:app"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
openui_eval = ["tasks/*.json", "tasks/**/*", "tasks/*.md", "tasks/*.txt"]