:: explain -c180 -r
          author: (auto-adjust) Someone
              \_: (pinned.py:5) Someone someone@example.com
    author_email: (auto-adjust) someone@example.com
     description: (setup.py:3 ) This is a package that has setupmeta pinned to an explicit version range.
    download_url: (missing    ) - Consider specifying 'download_url'
         license: (pinned.py:4) MIT
long_description: (missing    ) - Consider specifying 'long_description', add a README file
            name: (explicit   ) pinned
      py_modules: (auto-fill  ) ["pinned"]
  setup_requires: (explicit   ) ["setupmeta>=0.0.0"]
             url: (missing    ) - Consider specifying 'url'
         version: (pinned.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

:: explain --expand
"""
Generated by https://pypi.org/project/setupmeta/
"""
from setuptools import setup
__version__ = "0.1.0"
setup(
    author="Someone",                                                 # from pinned.py:5
    author_email="someone@example.com",
    description="This is a package that has setupmeta pinned to an explicit version range.", # from setup.py:3
    license="MIT",                                                    # from pinned.py:4
    name="pinned",
    py_modules=["pinned"],
    setup_requires=["setupmeta>=0.0.0"],
    version=__version__,                                              # from pinned.py:8
)

:: check


:: entrypoints


:: version
0.1.0
