Files
lora-lite/pyproject.toml
T
2026-04-27 09:47:07 +08:00

42 lines
1.2 KiB
TOML

[project]
name = "lora-lite"
version = "0.0.1"
description = "Hackable forward-hook LoRA. ~600 LoC. One file per variant."
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"torch>=2.1",
"einops>=0.7",
"jaxtyping>=0.2.34",
"safetensors>=0.5",
]
keywords = ["lora", "pytorch", "peft", "adapters", "llm"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
[project.urls]
Homepage = "https://github.com/wassname/lora-lite"
Repository = "https://github.com/wassname/lora-lite"
Issues = "https://github.com/wassname/lora-lite/issues"
[project.optional-dependencies]
build = ["twine>=6"]
test = ["pytest", "tabulate", "beartype>=0.18"]
hf-test = ["accelerate>=1.6", "safetensors>=0.5", "transformers>=4.51"]
bnb-test = ["bitsandbytes>=0.46"]
benchmark = ["accelerate>=1.6", "datasets>=3.6", "safetensors>=0.5", "tabulate", "transformers>=4.51", "tyro>=0.9"]
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[tool.uv]
exclude-newer = "5 days"