put requirements in my now-usual spot

This commit is contained in:
Brian S. Stephan 2020-10-24 09:22:07 -05:00
parent c670072c86
commit 1833430c5d
5 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ HERE = os.path.dirname(os.path.abspath(__file__))
def extract_requires():
with open(os.path.join(HERE, 'requirements.in'), 'r') as reqs:
with open(os.path.join(HERE, 'requirements/requirements.in'), 'r') as reqs:
return [line.split(' ')[0] for line in reqs if not line[0] == '-']