-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (54 loc) · 1.33 KB
/
pyproject.toml
File metadata and controls
59 lines (54 loc) · 1.33 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
[project]
name = "modelplane"
version = "0.1.0"
description = ""
readme = "README.md"
license = { text = "Apache-2.0" }
authors = [
{ name = "MLCommons AI Safety", email = "ai-safety-engineering@mlcommons.org" },
]
requires-python = ">=3.12,!=3.12.5,<4"
dependencies = [
"click>=8,<9",
"dvc[gs]>=3.60,<4",
"python-dotenv>=1,<2",
"requests>=2,<3",
"prometheus-client",
"jsonlines>=4,<5",
"numpy>=2,<3",
"matplotlib>=3,<4",
"jupyter>=1,<2",
"jupyterlab-git",
"scikit-learn>=1.5.0,<2.0.0",
"pandas>=2.2.2,<4",
"modelbench @ git+https://github.com/mlcommons/modelbench.git",
"graphviz>=0.20,<1",
# the below 4 are tied to the Dockerfile.mlflow versions; need to be upgraded together
"mlflow[auth]==3.7.0",
"psycopg2-binary==2.9.11",
"boto3==1.42.51",
"google-cloud-storage==3.9.0",
]
[project.scripts]
modelplane = "modelplane.cli:cli"
[dependency-groups]
dev = [
"ipython<10",
]
test = [
"pytest>=8,<10",
"pytest-cov>=6,<8",
]
mlflow = [
"psycopg2-binary>=2.9.10,<3",
"boto3>=1.38.31,<2",
"google-cloud-storage>=3.1.0,<4",
]
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
include = ["modelplane", "modelplane.*"]
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"