github.com/kaydxh/golang@v0.0.131/pkg/gocv/cgo/third_path/pybind11/setup.cfg (about)

     1  [metadata]
     2  long_description = file: README.rst
     3  long_description_content_type = text/x-rst
     4  description = Seamless operability between C++11 and Python
     5  author = Wenzel Jakob
     6  author_email = wenzel.jakob@epfl.ch
     7  url = https://github.com/pybind/pybind11
     8  license = BSD
     9  
    10  classifiers =
    11      Development Status :: 5 - Production/Stable
    12      Intended Audience :: Developers
    13      Topic :: Software Development :: Libraries :: Python Modules
    14      Topic :: Utilities
    15      Programming Language :: C++
    16      Programming Language :: Python :: 3 :: Only
    17      Programming Language :: Python :: 3.6
    18      Programming Language :: Python :: 3.7
    19      Programming Language :: Python :: 3.8
    20      Programming Language :: Python :: 3.9
    21      Programming Language :: Python :: 3.10
    22      Programming Language :: Python :: 3.11
    23      License :: OSI Approved :: BSD License
    24      Programming Language :: Python :: Implementation :: PyPy
    25      Programming Language :: Python :: Implementation :: CPython
    26      Programming Language :: C++
    27      Topic :: Software Development :: Libraries :: Python Modules
    28  
    29  keywords =
    30      C++11
    31      Python bindings
    32  
    33  project_urls =
    34      Documentation = https://pybind11.readthedocs.io/
    35      Bug Tracker = https://github.com/pybind/pybind11/issues
    36      Discussions = https://github.com/pybind/pybind11/discussions
    37      Changelog = https://pybind11.readthedocs.io/en/latest/changelog.html
    38      Chat = https://gitter.im/pybind/Lobby
    39  
    40  [options]
    41  python_requires = >=3.6
    42  zip_safe = False
    43  
    44  
    45  [flake8]
    46  max-line-length = 120
    47  show_source = True
    48  exclude = .git, __pycache__, build, dist, docs, tools, venv
    49  extend-ignore = E203, E722
    50  extend-select = B902, B904