forked from SamsungSAILMontreal/TinyRecursiveModels
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (43 loc) · 1.08 KB
/
pyproject.toml
File metadata and controls
48 lines (43 loc) · 1.08 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
[build-system]
requires = ["setuptools>=69"]
build-backend = "setuptools.build_meta"
[project]
name = "tinyrecursivemodels"
version = "0.1.0"
description = "Recursive reasoning with tiny networks for puzzle-solving tasks (ARC-AGI, Sudoku, Maze)."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [{ name = "Marko Rosenmüller" }]
keywords = ["deep-learning", "recursive-reasoning", "arc-agi", "pytorch"]
dependencies = [
"torch",
"adam-atan2; platform_system != 'Darwin'",
"einops",
"tqdm",
"coolname",
"pydantic",
"argdantic",
"wandb",
"omegaconf",
"hydra-core",
"huggingface_hub",
"packaging",
"ninja",
"wheel",
"setuptools",
"setuptools-scm",
"pydantic-core",
"numba",
"triton; platform_system != 'Darwin'",
]
[project.scripts]
[tool.setuptools]
package-dir = {"" = "."}
[tool.setuptools.packages.find]
include = ["models*", "dataset*", "evaluators*", "utils*"]
exclude = ["tests*", "docs*", "kaggle*", "data*", "checkpoints*"]
[project.optional-dependencies]
dev = [
"pytest>=8.2",
]