Open ZdenekM opened 2 years ago
Currently, the long_description field is generated by concatenating README and CHANGELOG while building packages:
long_description
https://github.com/robofit/arcor2/blob/6dab12458e1081407989f61b34da71b9840be12d/pants-plugins/setup_kwargs_plugin/register.py#L69
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.
https://www.pantsbuild.org/docs/reference-python_distribution#codelong_description_pathcode
Currently, the
long_description
field is generated by concatenating README and CHANGELOG while building packages:https://github.com/robofit/arcor2/blob/6dab12458e1081407989f61b34da71b9840be12d/pants-plugins/setup_kwargs_plugin/register.py#L69
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.