Files
activation_store/pyproject.toml
T
wassname (Michael J Clark) 306b9963a9 Update pyproject.toml
2025-05-18 11:14:56 +08:00

58 lines
1.4 KiB
TOML

[project]
name = "activation_store"
version = "0.1.0"
description = "Cache transformer activations to disk"
readme = "README.md"
authors = [
{ name = "wassname", email = "1103714+wassname@users.noreply.github.com" }
]
urls = { "Repository" = "https://github.com/wassname/activation_store.git"}
keywords = ["transformers", "cache", "activations", "huggingface"]
requires-python = ">=3.10"
dependencies = [
"baukit",
"datasets>=3.3",
"einops>=0.8",
"jaxtyping>=0.2",
"loguru>=0.7",
"matplotlib>=3.10",
"skorch>=1.1",
"torch>=2.6",
"tqdm>=4.67",
"transformers>=4.48",
]
[tool.uv.sources]
baukit = { git = "https://github.com/davidbau/baukit.git" , rev = "9d51abd51ebf29769aecc38c4cbef459b731a36e" }
[dependency-groups]
dev = [
"ipykernel>=6.29.5",
"ipywidgets>=8.1.5",
"accelerate>=1.3.0",
"pandas>=2.2.3",
]
# now there are many build systems we could use, the most compatible is setuptools
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."] # search the root directory
include = ["activation_store*"]
# [build-system]
# requires = ["hatchling"]
# build-backend = "hatchling.build"
# [build-system]
# requires = ["flit_core>=3.2,<4"]
# build-backend = "flit_core.buildapi"
# [build-system]
# requires = ["pdm-backend"]
# build-backend = "pdm.backend"