:: explain -c180 -r
                       author: (auto-adjust ) Someone
                           \_: (single.py:5 ) Someone someone@example.com
                 author_email: (auto-adjust ) someone@example.com
                  classifiers: (missing     ) - Consider specifying 'classifiers'
                  description: (README.rst:1) A package implemented by a single .py file
                           \_: (setup.py:3  ) Unicode chars in setup.py 😀 😎
                 download_url: (missing     ) - Consider specifying 'download_url'
                      license: (single.py:4 ) MIT
             long_description: (README.rst  ) single: A package implemented by a single .py file ================================================== This example shows: * `name` ...
long_description_content_type: (README.rst  ) text/x-rst
                         name: (explicit    ) single
                   py_modules: (auto-fill   ) ["single"]
               setup_requires: (explicit    ) ["setupmeta", "setuptools_scm"]
                          url: (missing     ) - Consider specifying 'url'
                      version: (single.py:8 ) 0.1.0

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

:: explain --expand
"""
Generated by https://pypi.org/project/setupmeta/
"""
from setuptools import setup
__version__ = "0.1.0"
setup(
    author="Someone",                       # from single.py:5
    author_email="someone@example.com",
    description="A package implemented by a single .py file", # from README.rst:1
    license="MIT",                          # from single.py:4
    long_description=open("README.rst").read(), # from README.rst
    long_description_content_type="text/x-rst", # from README.rst
    name="single",
    py_modules=["single"],
    setup_requires=["setuptools_scm"],
    version=__version__,                    # from single.py:8
)

:: check
warning: CheckCommand: missing required meta-data: url

:: entrypoints


:: version
0.1.0
