-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
13 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
from setuptools import setup, find_packages | ||
from setuptools import find_packages, setup | ||
|
||
with open('README.md') as f: | ||
with open("README.md") as f: | ||
readme = f.read() | ||
|
||
with open('requirements.txt') as f: | ||
requirements = f.read().split('\n') | ||
with open("requirements.txt") as f: | ||
requirements = f.read().split("\n") | ||
|
||
setup( | ||
name='stripedhyena', | ||
version='0.2.1', | ||
description='Model and inference code for beyond Transformer architectures', | ||
name="stripedhyena", | ||
version="0.2.1", | ||
description="Model and inference code for beyond Transformer architectures", | ||
long_description=readme, | ||
long_description_content_type='text/markdown', | ||
author='Michael Poli', | ||
url='http://github.com/togethercomputer/stripedhyena', | ||
license='Apache-2.0', | ||
long_description_content_type="text/markdown", | ||
author="Michael Poli", | ||
url="http://github.com/togethercomputer/stripedhyena", | ||
license="Apache-2.0", | ||
packages=find_packages(where="stripedhyena"), | ||
install_requires=requirements, | ||
) | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters