-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (33 loc) · 733 Bytes
/
Copy pathpyproject.toml
File metadata and controls
36 lines (33 loc) · 733 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
36
[project]
name = "reliabilitylab"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
authors = [
{ name = "mbobie", email = "bobbieamankwatia@gmail.com" }
]
requires-python = ">=3.12,<3.13"
dependencies = [
"accelerate>=1.14.0",
"datasets>=5.0.1",
"evaluate>=0.4.6",
"matplotlib>=3.11.1",
"numpy>=2.5.2",
"pandas>=3.0.5",
"pyyaml>=6.0.3",
"rich>=15.0.0",
"scikit-learn>=1.9.0",
"scipy>=1.18.0",
"transformers>=5.15.0",
"typer>=0.27.1",
]
[project.scripts]
reliabilitylab = "reliabilitylab:main"
[build-system]
requires = ["uv_build>=0.12.5,<0.13.0"]
build-backend = "uv_build"
[dependency-groups]
dev = [
"pytest>=9.1.1",
"ruff>=0.16.3",
]