Tilelli-llm / pyproject.toml
TilelliLab's picture
Mirror small files (code, paper, results)
f86dc09 verified
Raw
History Blame Contribute Delete
864 Bytes
[build-system]
requires = ["setuptools>=64"]
build-backend = "setuptools.build_meta"
[project]
name = "tilelli"
version = "0.1.0"
description = "Small byte-level LM with a 3-pathway routed block. Every claim verifiable."
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.10"
authors = [
{ name = "Tilelli LLM Team", email = "hello@tilelli.tech" },
]
urls = { Homepage = "https://tilelli.tech", Repository = "https://github.com/TilelliLab/Tilelli-llm" }
# torch is intentionally NOT pinned here. The default pip wheel on Linux is
# CUDA, which is 2 GB+ for users who don't have a GPU. Read INSTALL.md and
# install torch yourself with the appropriate --index-url first.
dependencies = [
"torch>=2.1,<3",
"numpy>=1.24,<3",
]
[project.optional-dependencies]
test = ["pytest>=7"]
[tool.setuptools.packages.find]
where = ["src"]