fix formatting description on PyPi
The package description on PyPi is based on now based on the README.md
file, but PyPi only likes the rst
format. There is a very elegant solution for that on StackOverflow here. However, this doesn't work because the long_description
field is being overwritten by PBR (docs) which is used by PyScaffold. This one is based on README.md
.
So either we figure out how to make sure PyScaffold/PBR use the long_description
we define, or move formatting back to rst
. Since I like md
more than rst
, I prefer to the former.