-
-
Notifications
You must be signed in to change notification settings - Fork 190
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (53 loc) · 2.01 KB
/
Copy pathpyproject.toml
File metadata and controls
59 lines (53 loc) · 2.01 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 = "atlas"
version = "3.1.3"
description = "Adaptive Test-time Learning and Autonomous Specialization"
readme = "README.md"
license = "AGPL-3.0-or-later"
requires-python = ">=3.9"
authors = [{name = "Isaac Tigges"}]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Code Generators",
]
# The core CLI is deliberately stdlib-only (every third-party import in
# atlas/ is lazy/function-level), so there are no base dependencies.
[project.optional-dependencies]
# `atlas lens build` / `atlas asa build` (per-model artifact training)
# hard-require these at runtime — including xgboost + scikit-learn for
# the G(x) training step. Lower bounds only — the CLI has no reason to
# pin exact versions.
train = [
# Floor at the newest torch published to default PyPI — 2.13.x exists
# only on the pytorch CPU index, which plain `pip install atlas[train]`
# never consults (the audit found the old >=2.13.0 floor unsatisfiable).
"torch>=2.12",
"numpy>=1.24",
"gguf",
"huggingface_hub",
"psutil",
"xgboost>=3.2.0",
"scikit-learn>=1.7.2",
]
[project.urls]
Homepage = "https://github.com/itigges22/ATLAS"
Repository = "https://github.com/itigges22/ATLAS"
Issues = "https://github.com/itigges22/ATLAS/issues"
Changelog = "https://github.com/itigges22/ATLAS/blob/main/CHANGELOG.md"
[project.scripts]
atlas = "atlas.__main__:main"
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-m 'not integration'"
[build-system]
# >=77 because the SPDX-string `license` form (PEP 639) fails the build
# on older setuptools ("license should be a table").
requires = ["setuptools>=77"] # floor stays py3.9-compatible: RHEL9-family hosts (bootstrap) run python 3.9; setuptools 83+ needs >=3.10
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["atlas*"]