Upload overlay/pyproject.toml with huggingface_hub
Browse files- overlay/pyproject.toml +41 -0
overlay/pyproject.toml
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[project]
|
| 2 |
+
name = "hydra"
|
| 3 |
+
version = "0.1.0"
|
| 4 |
+
description = "Self-evolving agent harness for autonomous neural architecture research"
|
| 5 |
+
readme = "README.md"
|
| 6 |
+
requires-python = ">=3.11"
|
| 7 |
+
dependencies = [
|
| 8 |
+
"matplotlib>=3.10.8",
|
| 9 |
+
"numpy>=2.2.6",
|
| 10 |
+
"pandas>=2.3.3",
|
| 11 |
+
"pyarrow>=21.0.0",
|
| 12 |
+
"requests>=2.32.0",
|
| 13 |
+
"rustbpe>=0.1.0",
|
| 14 |
+
"tiktoken>=0.11.0",
|
| 15 |
+
"torch==2.9.1",
|
| 16 |
+
"pydantic>=2.0",
|
| 17 |
+
"huggingface_hub>=0.36.0",
|
| 18 |
+
"setuptools>=80.0.0",
|
| 19 |
+
"einops>=0.8.0",
|
| 20 |
+
]
|
| 21 |
+
|
| 22 |
+
[project.optional-dependencies]
|
| 23 |
+
dev = [
|
| 24 |
+
"pytest>=8.0",
|
| 25 |
+
]
|
| 26 |
+
|
| 27 |
+
[tool.uv.sources]
|
| 28 |
+
torch = [
|
| 29 |
+
{ index = "pytorch-cu128" },
|
| 30 |
+
]
|
| 31 |
+
|
| 32 |
+
[[tool.uv.index]]
|
| 33 |
+
name = "pytorch-cu128"
|
| 34 |
+
url = "https://download.pytorch.org/whl/cu128"
|
| 35 |
+
explicit = true
|
| 36 |
+
|
| 37 |
+
[tool.pytest.ini_options]
|
| 38 |
+
# Restrict collection to live tests/. archive/ holds obsolete code & tests
|
| 39 |
+
# that import deleted modules — keep them out of the default run.
|
| 40 |
+
testpaths = ["tests"]
|
| 41 |
+
norecursedirs = ["archive", ".git", "__pycache__", "node_modules", ".cache"]
|