Join GitHub today
GitHub is home to over 20 million developers working together to host and review code, manage projects, and build software together.
pip install error - no file or directory `requirements.txt` #33
Comments
lockefox
referenced this issue
Apr 10, 2017
Merged
FIxes #33 - requirement.txt sourcing inside wheel #35
schapman1974
closed this
in
#35
Apr 10, 2017
added a commit
that referenced
this issue
Apr 10, 2017
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
lockefox commentedApr 6, 2017
The way setup.py is written, the project will install correctly directly, and straight from source, but I have an issue using tinymongo with
test_requiresThough the requirements are passed correctly inside the dist (
tinymongo.egg-info/requires.txt) this isn't accessible at setup time. And when pytest tries to get set up, it fails because of requirements.txtHard-writing the requirements.txt into setup.py (rather than reading from requirements.txt) would fix this. Or also checking the .egg-info path might do the trick too.