:: explain -c180 -r
                       author: (missing   ) - Consider specifying 'author'
                  description: (README:1  ) Several readme files
                 download_url: (setup.py:2) http://example.com/readmes
                         foo*: (setup.py:3) bar
                      license: (auto-fill ) MIT
             long_description: (README.md ) readmes: foo No useful short description on 1st line here This scenario tests edge cases around finding a suitable short description ...
long_description_content_type: (README.md ) text/markdown
                         name: (explicit  ) readmes
               setup_requires: (explicit  ) ["setupmeta"]
                          url: (missing   ) - Consider specifying 'url'
                      version: (missing   ) - Consider specifying 'version', you can use setupmeta's versioning='...'

:: explain -d
    # This reflects only auto-fill, doesn't look at explicit settings from your setup.py
    install_requires=None,   # no auto-fill

:: explain --expand
"""
Generated by https://pypi.org/project/setupmeta/
"""
from setuptools import setup
setup(
    description="Several readme files", # from README:1
    download_url="http://example.com/readmes", # from setup.py:2
    license="MIT",
    long_description=open("README.md").read(), # from README.md
    long_description_content_type="text/markdown", # from README.md
    name="readmes",
)

:: check


:: entrypoints


:: version
None
