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
Currently, the long_description field is generated by concatenating README and CHANGELOG while building packages:
long_description
arcor2/pants-plugins/setup_kwargs_plugin/register.py
Line 69 in 6dab124
However, it makes the setup.py very long (in some cases) and it would be better to put there something like:
setup.py
long_description=read(README.md)
...in order to read the file content in runtime.
The text was updated successfully, but these errors were encountered:
https://www.pantsbuild.org/docs/reference-python_distribution#codelong_description_pathcode
Sorry, something went wrong.
No branches or pull requests
Currently, the
long_description
field is generated by concatenating README and CHANGELOG while building packages:arcor2/pants-plugins/setup_kwargs_plugin/register.py
Line 69 in 6dab124
However, it makes the
setup.py
very long (in some cases) and it would be better to put there something like:...in order to read the file content in runtime.
The text was updated successfully, but these errors were encountered: