Datasets:
made a pyproject.toml for deps
Browse files- .claude/settings.local.json +10 -0
- .gitignore +1 -0
- .python-version +1 -0
- pyproject.toml +10 -0
- uv.lock +0 -0
.claude/settings.local.json
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"permissions": {
|
| 3 |
+
"allow": [
|
| 4 |
+
"Bash(tree:*)",
|
| 5 |
+
"Bash(find:*)"
|
| 6 |
+
],
|
| 7 |
+
"deny": [],
|
| 8 |
+
"ask": []
|
| 9 |
+
}
|
| 10 |
+
}
|
.gitignore
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
.venv
|
.python-version
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
3.12
|
pyproject.toml
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[project]
|
| 2 |
+
name = "hf-repo-datasets-ardea-arc-agi-v1"
|
| 3 |
+
version = "0.1.0"
|
| 4 |
+
description = "My take on the ARC-AGI-V1 data structure"
|
| 5 |
+
readme = "README.md"
|
| 6 |
+
requires-python = ">=3.12"
|
| 7 |
+
dependencies = [
|
| 8 |
+
"datasets>=4.4.1",
|
| 9 |
+
"pyarrow>=22.0.0",
|
| 10 |
+
]
|
uv.lock
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|