Circuitscape / Circuitscape.py

Circuitscape uses electronic circuit theory to solve problems in landscape ecology.
https://www.circuitscape.org/
Other
27 stars 17 forks source link

setup.py looks for README.txt #82

Closed jessjaco closed 8 years ago

jessjaco commented 8 years ago

This always errors out when I try to install using pip, so I have to edit. Presumably README.md just needs to be parsed into rst?

ViralBShah commented 8 years ago

Does pip pull a tagged version from github? We can just copy README.md to README.txt for now and tag a new release if so.

jessjaco commented 8 years ago

It looks like the version on pypi is fine (README.txt is in the archive). So it only affects trying to install from github version directly.

tanmaykm commented 8 years ago

README.txt gets generated by the pypi_readme make task.

We used the Makefile for all these tasks, as far as I can remember.

jessjaco commented 8 years ago

Ahh, that makes sense. I'll just do that before installing. Thanks