Spaces:
Running on Zero
Running on Zero
File size: 845 Bytes
d93a0f6 | 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 | [build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "neural-archaeology"
version = "0.1.0"
description = "A research-grade platform for neural network reverse-engineering and mechanistic interpretability."
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"torch>=2.2.0",
"torchvision>=0.17.0",
"numpy>=1.26.0",
"scipy>=1.11.0",
"scikit-learn>=1.3.0",
"pandas>=2.1.0",
"fastapi>=0.109.0",
"uvicorn>=0.27.0",
"pydantic>=2.5.0",
"plotly>=5.18.0",
"tqdm>=4.66.0",
"pyyaml>=6.0.1",
"safetensors>=0.4.2",
"sentencepiece>=0.2.0"
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"ruff>=0.1.14",
"mypy>=1.8.0"
]
[tool.hatch.build.targets.wheel]
packages = ["src/neural_archaeology"]
[tool.pyright]
extraPaths = ["."]
|