-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (59 loc) · 1.69 KB
/
Copy pathpyproject.toml
File metadata and controls
65 lines (59 loc) · 1.69 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "maia2"
authors = [{name = "csslab", email = "josephtang@cs.toronto.edu"}]
description = "Official implementation of Maia-2, a unified human-like chess model across skill levels."
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.10,<3.13"
keywords = ["chess", "human-ai alignment", "machine learning", "pytorch"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dynamic = ["version"]
dependencies = [
"chess>=1.10.0,<2",
"einops>=0.8.0,<1",
"gdown>=5.2.2,<6",
"numpy>=2.1.3,<3",
"pandas>=2.2.3,<3",
"pyyaml>=6.0.2,<7",
"pyzstd>=0.19.1,<0.20",
"requests>=2.33.0,<3",
"torch>=2.8.0,<2.9",
"tqdm>=4.66.3,<5",
]
[project.optional-dependencies]
dev = [
"build>=1.2,<2",
"pytest>=8,<9",
"ruff>=0.14,<1",
]
[project.urls]
Homepage = "https://www.maiachess.com/"
Source = "https://github.com/CSSLab/maia2"
Paper = "https://arxiv.org/abs/2409.20553"
Issues = "https://github.com/CSSLab/maia2/issues"
"Maia-3" = "https://github.com/CSSLab/maia3"
[tool.ruff]
target-version = "py310"
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.flit.sdist]
include = [
"CITATION.cff",
"CODE_OF_CONDUCT.md",
"CONTRIBUTING.md",
"SECURITY.md",
"tests/",
]