-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (46 loc) · 954 Bytes
/
pyproject.toml
File metadata and controls
55 lines (46 loc) · 954 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "mlprobe"
version = "0.1.0"
description = "Pre-Deployment Model Validation & Reliability Testing"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.10"
dependencies = [
"numpy>=1.24",
"pandas>=2.0",
"scipy>=1.10",
"scikit-learn>=1.3",
"pydantic>=2.0",
"jinja2>=3.1",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4",
"pytest-cov>=4.1",
"pytest-asyncio>=0.21",
"black>=23.0",
"isort>=5.12",
"hypothesis>=6.80",
"pyarrow>=12.0",
"pyyaml>=6.0",
]
[tool.hatch.build.targets.wheel]
packages = ["src/mlprobe"]
[tool.black]
line-length = 88
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-v --tb=short"
[tool.coverage.run]
source = ["src"]
[tool.coverage.report]
fail_under = 85
[dependency-groups]
dev = [
"pyyaml>=6.0.3",
]