forked from IBM/algorithm-nexus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
96 lines (87 loc) · 2.47 KB
/
Copy pathpyproject.toml
File metadata and controls
96 lines (87 loc) · 2.47 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
[project]
name = "algorithm-nexus"
description = "A comprehensive library for AI model delivery, testing, and benchmarking"
readme = "README.md"
requires-python = ">=3.12,<3.14"
license-files = ["LICENSE"]
authors = [{ name = "Christian Pinto", email = "christian.pinto@ibm.com" }]
maintainers = [{ name = "Christian Pinto", email = "christian.pinto@ibm.com" }]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/IBM/algorithm-nexus"
Issues = "https://github.com/IBM/algorithm-nexus/issues"
Repository = "https://github.com/IBM/algorithm-nexus"
[project.scripts]
nexus = "algorithm_nexus.cli:main"
[project.optional-dependencies]
candidate = [
"bmfm-targets[vllm]>=0.20.0",
# CP 02/07/2026
# Scanners are flagging opencv-python-headless==5.0.0.93 as
# potentially malicious. While we think it's a false positive,
# we use this qualifier to prevent installing a potentially malicious library.
# This dependency is added by vLLM and TerraTorch
"opencv-python-headless!=5.0.0.93",
"terrakit==0.2.0",
"terratorch[vllm]==1.2.10",
"vllm==0.26.0",
]
cli = [
"ado-core>=2.0",
"pydantic>=2.13.3",
"pyyaml>=6.0.3",
"rich>=15.0.0",
"typer>=0.25.0",
]
ecosystem = [
"bmfm-targets",
"gridfm-graphkit==0.8.1",
"terrakit>=0.2.0",
"terratorch>=1.2.7",
"tokamind",
]
product = [
# CP 02/07/2026
# Scanners are flagging opencv-python-headless==5.0.0.93 as
# potentially malicious. While we think it's a false positive,
# we use this qualifier to prevent installing a potentially malicious library.
# This dependency is added by vLLM and TerraTorch
"opencv-python-headless!=5.0.0.93",
"terrakit==0.2.0",
"terratorch[vllm]==1.2.10",
"vllm==0.26.0",
]
[dependency-groups]
dev = [
"black>=25.1.0",
"codespell>=2.4.0",
"detect-secrets @ git+https://github.com/ibm/detect-secrets.git",
"pre-commit>=4.2.0",
"ruff>=0.12.0",
"zensical>=0.0.40",
]
test = [
"pytest>=9.0.3",
]
[build-system]
requires = ["hatchling", "uv-dynamic-versioning"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "uv-dynamic-versioning"
[tool.uv]
package = true
conflicts = [
[
{ extra = "ecosystem" },
{ extra = "candidate" },
{ extra = "product" },
],
]
[tool.uv.sources]
bmfm-targets = { git = "https://github.com/BiomedSciAI/biomed-multi-omic.git" }
tokamind = { git = "https://github.com/UKAEA-IBM-STFC-Fusion-FMs/tokamind", tag = "OS_v2.0" }
[tool.uv-dynamic-versioning]
enable = true
vcs = "git"
style = "pep440"
pattern = "default-unprefixed"