Lint setup.py
Browse files
setup.py
CHANGED
@@ -1,7 +1,9 @@
|
|
|
|
|
|
1 |
from setuptools import setup, find_packages
|
2 |
|
3 |
install_requires = []
|
4 |
-
with open("./requirements.txt", "
|
5 |
# don't include peft yet until we check the int4
|
6 |
# need to manually install peft for now...
|
7 |
reqs = [r.strip() for r in requirements_file.readlines() if "peft" not in r]
|
|
|
1 |
+
"""setup.py for axolotl"""
|
2 |
+
|
3 |
from setuptools import setup, find_packages
|
4 |
|
5 |
install_requires = []
|
6 |
+
with open("./requirements.txt", encoding="utf-8") as requirements_file:
|
7 |
# don't include peft yet until we check the int4
|
8 |
# need to manually install peft for now...
|
9 |
reqs = [r.strip() for r in requirements_file.readlines() if "peft" not in r]
|