arc-agi 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
arc_agi-0.1.0/PKG-INFO ADDED
@@ -0,0 +1,12 @@
1
+ Metadata-Version: 2.1
2
+ Name: arc-agi
3
+ Version: 0.1.0
4
+ Summary: WIP
5
+ Requires-Python: >=3.13
6
+ Requires-Dist: arc-core
7
+ Requires-Dist: arc-torch
8
+ Requires-Dist: arc-lambda
9
+ Requires-Dist: arc-llm
10
+ Description-Content-Type: text/markdown
11
+
12
+ # ARC-Research-Template
@@ -0,0 +1 @@
1
+ # ARC-Research-Template
@@ -0,0 +1,61 @@
1
+ [project]
2
+ name = "arc-agi"
3
+ version = "0.1.0"
4
+ description = "WIP"
5
+ readme = "README.md"
6
+ requires-python = ">=3.13"
7
+ dependencies = [
8
+ "arc-core",
9
+ "arc-torch",
10
+ "arc-lambda",
11
+ "arc-llm",
12
+ ]
13
+
14
+ [project.urls]
15
+
16
+ [dependency-groups]
17
+ lint = [
18
+ "ruff>=0.11.2",
19
+ ]
20
+ dev = [
21
+ "ipykernel>=6.29.5",
22
+ ]
23
+
24
+ [tool.uv.sources.arc]
25
+ path = "./libs/arc"
26
+ editable = true
27
+
28
+ [tool.uv.sources.arc-core]
29
+ path = "./libs/arc/core"
30
+ editable = true
31
+
32
+ [tool.uv.sources.arc-torch]
33
+ path = "./libs/arc/torch"
34
+ editable = true
35
+
36
+ [tool.uv.sources.arc-lambda]
37
+ path = "./libs/arc/lambda"
38
+ editable = true
39
+
40
+ [tool.uv.sources.arc-llm]
41
+ path = "./libs/arc/llm"
42
+ editable = true
43
+
44
+ [tool.ruff]
45
+ extend-include = [
46
+ "*.ipynb",
47
+ ]
48
+
49
+ [tool.ruff.lint]
50
+ select = [
51
+ "D",
52
+ ]
53
+
54
+ [tool.ruff.lint.pydocstyle]
55
+ convention = "google"
56
+
57
+ [build-system]
58
+ requires = [
59
+ "pdm-backend",
60
+ ]
61
+ build-backend = "pdm.backend"