We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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.
The text was updated successfully, but these errors were encountered:
As long as things look fine on PyPi, I'm fine with this. Send a PR! 😄
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
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.
The text was updated successfully, but these errors were encountered: