/ pyproject.toml
pyproject.toml
1 [project] 2 name = "autoresearch" 3 version = "0.1.0" 4 description = "Autonomous pretraining research swarm" 5 readme = "README.md" 6 requires-python = ">=3.10" 7 dependencies = [ 8 "kernels>=0.11.7", 9 "matplotlib>=3.10.8", 10 "numpy>=2.2.6", 11 "pandas>=2.3.3", 12 "pyarrow>=21.0.0", 13 "requests>=2.32.0", 14 "rustbpe>=0.1.0", 15 "tiktoken>=0.11.0", 16 "torch==2.9.1", 17 ] 18 19 [tool.uv.sources] 20 torch = [ 21 { index = "pytorch-cu128" }, 22 ] 23 24 [[tool.uv.index]] 25 name = "pytorch-cu128" 26 url = "https://download.pytorch.org/whl/cu128" 27 explicit = true