Skip to content

Commit 29d97f0

Browse files
committed
[fix] Fixed setup.py get_install_requires()
1 parent ffc01f4 commit 29d97f0

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ def get_install_requires():
3434
# skip to next iteration if comment or empty line
3535
if line.startswith('#') or line == '' or line.startswith('http') or line.startswith('git'):
3636
continue
37+
# add line to requirements
38+
requirements.append(line.replace('\n', ''))
3739
return requirements
3840

3941

0 commit comments

Comments
 (0)