Skip to content

Commit

Permalink
FIX: Broken path to requirements.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
d-Rickyy-b committed Sep 2, 2019
1 parent 42eca9b commit cc7edf4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -11,7 +11,7 @@ def requirements():
"""Build the requirements list for this project"""
requirements_list = []

with open('requirements.txt') as reqs:
with open(os.path.join(setup_path, "requirements.txt")) as reqs:
for install in reqs:
requirements_list.append(install.strip())

Expand Down

0 comments on commit cc7edf4

Please sign in to comment.