between-the-lines / pyproject.toml
coolbeanz79's picture
Pin LoRA inference dependencies (#9)
bb886ae
Raw
History Blame Contribute Delete
602 Bytes
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "between-the-lines"
version = "0.1.0"
description = "Annotate Python files with small-model comments and AST validation."
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"accelerate",
"bitsandbytes==0.49.0",
"gradio==5.50.0",
"huggingface_hub",
"peft==0.18.0",
"safetensors",
"spaces",
"torch",
"transformers @ git+https://github.com/huggingface/transformers.git",
"truststore",
]
[tool.setuptools.packages.find]
include = ["btl*"]