mirror of
https://github.com/facebookresearch/blt.git
synced 2025-01-18 16:37:46 +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
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…
Reference in a new issue