-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (31 loc) · 752 Bytes
/
pyproject.toml
File metadata and controls
35 lines (31 loc) · 752 Bytes
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
[project]
name = "modelbench"
version = "0.1.0"
description = "Professional model comparison tool for analyzing memory requirements of HuggingFace models"
readme = "README.md"
authors = [{ name = "Your Name", email = "your.email@example.com" }]
requires-python = ">=3.10"
dependencies = [
"flask>=2.3.3",
"flask-cors>=4.0.0",
"hf-mem>=0.4.2",
"python-dotenv>=1.2.1",
"pandas>=2.0.0",
"httpx>=0.24.0",
]
[tool.uv]
dev-dependencies = [
"pre-commit>=4.5.1",
"ruff>=0.14.10",
]
[dependency-groups]
dev = [
"pre-commit>=4.5.1",
"ruff>=0.14.10",
]
[tool.ruff]
line-length = 112
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I", "W"]
ignore = ["E501"] # Line too long - will use formatter instead