-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpyproject.toml
More file actions
94 lines (81 loc) · 2.11 KB
/
Copy pathpyproject.toml
File metadata and controls
94 lines (81 loc) · 2.11 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
# SPDX-License-Identifier: Apache-2.0
[build-system]
requires = ["setuptools>=42", "wheel", "setuptools_scm>=8.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "its_hub"
description = "A Python library for inference-time scaling LLMs"
authors = [
{name = "Kai Xu and the Red Hat AI Innovation Team", email = "xuk@redhat.com"}
]
readme = "README.md"
requires-python = ">=3.11"
license = "Apache-2.0"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dynamic = ["version"]
dependencies = [
"numpy",
"typing-extensions>=4.12.2",
]
[project.scripts]
# its-iaas removed for MVP - will be added back in [iaas] extra if needed
[tool.setuptools_scm]
version_file = "its_hub/_version.py"
# do not include +gREV local version, required for Test PyPI upload
local_scheme = "no-local-version"
[project.urls]
Homepage = "https://ai-innovation.team/its_hub"
[project.optional-dependencies]
lm = [
"openai>=1.68.2",
"aiohttp>=3.9.0",
"backoff>=2.2.0",
"certifi>=2026.2.25",
"requests",
]
iaas = [
"its_hub[lm]",
"fastapi>=0.115.5",
"uvicorn",
"pydantic>=2.7.2",
"click>=8.1.0",
]
dev = [
"its_hub[lm,iaas]",
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"pytest-cov>=4.1.0",
"ruff>=0.10.0",
"python-dotenv>=1.0.0",
"jupytext>=1.15.0",
"jupyter>=1.0.0",
]
# Experimental - not officially supported in MVP
experimental = [
"its_hub[lm]",
"transformers>=4.53.2",
"reward-hub[prm]>=0.1.10",
]
research = [
"math-verify>=0.1.0", # For mathematical reasoning evaluation in benchmark scripts
"datasets>=2.0.0", # For loading benchmark datasets (MATH500, AIME)
"matplotlib>=3.5.0", # For visualization scripts
]
[tool.setuptools]
package-dir = {"" = "."}
[tool.setuptools.packages.find]
where = ["."]
include = [
"its_hub",
"its_hub.algorithms",
"its_hub.api",
"its_hub.api.*",
"its_hub.core",
"its_hub.core.*",
]