Spaces:
Restarting
Restarting
Ink
commited on
Package `bytelatent` as a module (#7)
Browse files* make installable via pip
* fix missing xformers deps
* remove non-core dependencies
* fix linting
* fix isort
setup.py
ADDED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from setuptools import find_packages, setup
|
2 |
+
|
3 |
+
setup(
|
4 |
+
name="bytelatent",
|
5 |
+
version="0.1.0",
|
6 |
+
description="Byte Latent Transformer: Patches Scale Better Than Tokens",
|
7 |
+
author="Meta Platforms, Inc. and affiliates.",
|
8 |
+
url="https://github.com/facebookresearch/blt",
|
9 |
+
packages=find_packages(),
|
10 |
+
install_requires=["sentencepiece", "tiktoken", "xformers"],
|
11 |
+
)
|