Skip to content

Commit

Permalink
fix: use text/markdown for long_description_content_type (#2112)
Browse files Browse the repository at this point in the history
This minor edit changes the `long_description_content_type` to
`text/markdown`. The current rendering on
[PyPI](https://pypi.org/project/snakemake/7.22.0/) with `text/plain` is
fixed width, whereas `text/markdown` should render it more normally.
  • Loading branch information
mwtoews committed Feb 17, 2023
1 parent 1fbc5f5 commit 0241075
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.cfg
Expand Up @@ -13,7 +13,7 @@ long_description =
language in python style. Snakemake workflows are essentially Python
scripts extended by declarative code to define rules. Rules describe
how to create output files from input files.
long_description_content_type = text/plain
long_description_content_type = text/markdown
license = MIT
classifiers =
Development Status :: 5 - Production/Stable
Expand Down

0 comments on commit 0241075

Please sign in to comment.