Skip to content

Commit

Permalink
Dependencies/setup: replace the ',' with '/n' as separator after read…
Browse files Browse the repository at this point in the history
…ing the requirements.txt in setup.py - this otherwise fails on environments like kaggle
  • Loading branch information
neomatrix369 committed Dec 13, 2020
1 parent f24a00a commit 4919a51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
long_description = readme.read()

with open("requirements.txt", encoding='utf8') as requirements_txt:
install_requirements = requirements_txt.read().split(",")
install_requirements = requirements_txt.read().split("\n")

download_url = f"https://github.com/neomatrix369/nlp_profiler/releases/tag/v{nlp_profiler.__version__}"

Expand Down

0 comments on commit 4919a51

Please sign in to comment.