-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (56 loc) · 1.19 KB
/
pyproject.toml
File metadata and controls
64 lines (56 loc) · 1.19 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "agentic-framework"
version = "0.1.0"
description = "AI-powered model auditing framework with multi-agent debate"
authors = [{name = "Lukas Kuhn"}]
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"torch>=2.0.0",
"torchvision>=0.15.0",
"rich>=13.0.0",
"anthropic>=0.25.0",
"litellm>=1.0.0",
"pandas>=1.5.0",
"numpy>=1.20.0",
"scikit-learn>=1.0.0",
"pillow>=9.0.0",
"setuptools<81",
"model-auditor",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"black>=22.0.0",
"isort>=5.0.0",
]
medical = [
"medmnist>=2.0.0",
"wilds>=2.0.0",
"geffnet>=1.0.0",
"onnxruntime>=1.0.0,<1.21",
]
[project.scripts]
model-auditor = "main:main"
[tool.uv]
no-build-isolation-package = ["metricsreloaded"]
[tool.uv.sources]
model-auditor = { git = "https://github.com/MLO-lab/ModelAuditorCore.git" }
[tool.hatch.build.targets.wheel]
only-include = [
"main.py",
"data",
"utils",
"architectures",
"prompts",
"examples",
]
[tool.black]
line-length = 100
target-version = ['py38']
[tool.isort]
profile = "black"
line_length = 100