-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (32 loc) · 853 Bytes
/
Copy pathpyproject.toml
File metadata and controls
36 lines (32 loc) · 853 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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "maia3"
version = "0.1.0"
description = "Inference tools for Maia3 chess models"
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE" }
authors = [
{ name = "UofT CSSLab" }
]
dependencies = [
"huggingface-hub>=0.23",
"numpy",
"python-chess",
"torch",
]
[project.urls]
Homepage = "https://github.com/CSSLab/maia3"
Models = "https://huggingface.co/collections/MaiaChess/maia3"
Paper = "https://arxiv.org/abs/2605.19091"
[project.scripts]
maia3-uci = "maia3.uci:main"
maia3-cache = "maia3.cache:main"
maia3-3m-ablation = "maia3.presets:main_3m_ablation"
maia3-5m = "maia3.presets:main_5m"
maia3-23m = "maia3.presets:main_23m"
maia3-79m = "maia3.presets:main_79m"
[tool.setuptools.packages.find]
include = ["maia3*"]