mirror of
https://github.com/facebookresearch/blt.git
synced 2025-09-04 19:49:06 +00:00
Package bytelatent
as a module (#7)
* make installable via pip * fix missing xformers deps * remove non-core dependencies * fix linting * fix isort
This commit is contained in:
parent
9065bb1cce
commit
2fdc6f3cc9
1 changed files with 11 additions and 0 deletions
11
setup.py
Normal file
11
setup.py
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
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"],
|
||||||
|
)
|
Loading…
Add table
Reference in a new issue