Open senpos opened 6 years ago
Isn't it a good idea to get rid of long_description and just load it from README.md, as described in the official packaging tutorial?
long_description
README.md
It should be easier to make changes, since you will have to change only one file, rather than two. As I can see, both of them are (almost) identical.
with open("README.md", "r") as fh: long_description = fh.read() setuptools.setup( ... long_description=long_description, long_description_content_type="text/markdown", ...
That's all we need to change, I believe.
I can make a PR for this.
As long as things look fine on PyPi, I'm fine with this. Send a PR! 😄
Isn't it a good idea to get rid of
long_description
and just load it fromREADME.md
, as described in the official packaging tutorial?It should be easier to make changes, since you will have to change only one file, rather than two. As I can see, both of them are (almost) identical.
That's all we need to change, I believe.
I can make a PR for this.