Lint setup.py
This commit is contained in:
4
setup.py
4
setup.py
@@ -1,7 +1,9 @@
|
|||||||
|
"""setup.py for axolotl"""
|
||||||
|
|
||||||
from setuptools import setup, find_packages
|
from setuptools import setup, find_packages
|
||||||
|
|
||||||
install_requires = []
|
install_requires = []
|
||||||
with open("./requirements.txt", "r") as requirements_file:
|
with open("./requirements.txt", encoding="utf-8") as requirements_file:
|
||||||
# don't include peft yet until we check the int4
|
# don't include peft yet until we check the int4
|
||||||
# need to manually install peft for now...
|
# need to manually install peft for now...
|
||||||
reqs = [r.strip() for r in requirements_file.readlines() if "peft" not in r]
|
reqs = [r.strip() for r in requirements_file.readlines() if "peft" not in r]
|
||||||
|
|||||||
Reference in New Issue
Block a user