Back to home page

EIC code displayed by LXR

 
 

    


Warning, /jana2/src/python/externals/pybind11-2.10.3/setup.cfg is written in an unsupported language. File is not indexed.

0001 [metadata]
0002 long_description = file: README.rst
0003 long_description_content_type = text/x-rst
0004 description = Seamless operability between C++11 and Python
0005 author = Wenzel Jakob
0006 author_email = wenzel.jakob@epfl.ch
0007 url = https://github.com/pybind/pybind11
0008 license = BSD
0009 
0010 classifiers =
0011     Development Status :: 5 - Production/Stable
0012     Intended Audience :: Developers
0013     Topic :: Software Development :: Libraries :: Python Modules
0014     Topic :: Utilities
0015     Programming Language :: C++
0016     Programming Language :: Python :: 3 :: Only
0017     Programming Language :: Python :: 3.6
0018     Programming Language :: Python :: 3.7
0019     Programming Language :: Python :: 3.8
0020     Programming Language :: Python :: 3.9
0021     Programming Language :: Python :: 3.10
0022     Programming Language :: Python :: 3.11
0023     License :: OSI Approved :: BSD License
0024     Programming Language :: Python :: Implementation :: PyPy
0025     Programming Language :: Python :: Implementation :: CPython
0026     Programming Language :: C++
0027     Topic :: Software Development :: Libraries :: Python Modules
0028 
0029 keywords =
0030     C++11
0031     Python bindings
0032 
0033 project_urls =
0034     Documentation = https://pybind11.readthedocs.io/
0035     Bug Tracker = https://github.com/pybind/pybind11/issues
0036     Discussions = https://github.com/pybind/pybind11/discussions
0037     Changelog = https://pybind11.readthedocs.io/en/latest/changelog.html
0038     Chat = https://gitter.im/pybind/Lobby
0039 
0040 [options]
0041 python_requires = >=3.6
0042 zip_safe = False
0043 
0044 
0045 [flake8]
0046 max-line-length = 120
0047 show_source = True
0048 exclude = .git, __pycache__, build, dist, docs, tools, venv
0049 extend-ignore = E203, E722
0050 extend-select = B902, B904