blt/setup.py
Ink 2fdc6f3cc9
Some checks failed
Lint with Black / lint (push) Has been cancelled
Lint with isort / lint (push) Has been cancelled
Package bytelatent as a module (#7)
* make installable via pip

* fix missing xformers deps

* remove non-core dependencies

* fix linting

* fix isort
2025-01-06 16:44:50 -08:00

12 lines
371 B
Python

from setuptools import find_packages, setup
setup(
name="bytelatent",
version="0.1.0",
description="Byte Latent Transformer: Patches Scale Better Than Tokens",
author="Meta Platforms, Inc. and affiliates.",
url="https://github.com/facebookresearch/blt",
packages=find_packages(),
install_requires=["sentencepiece", "tiktoken", "xformers"],
)