1[metadata]
2long_description = file: README.rst
3long_description_content_type = text/x-rst
4description = Seamless operability between C++11 and Python
5author = Wenzel Jakob
6author_email = wenzel.jakob@epfl.ch
7url = https://github.com/pybind/pybind11
8license = BSD
9
10classifiers =
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 :: 2.7
17    Programming Language :: Python :: 3
18    Programming Language :: Python :: 3.5
19    Programming Language :: Python :: 3.6
20    Programming Language :: Python :: 3.7
21    Programming Language :: Python :: 3.8
22    Programming Language :: Python :: 3.9
23    Programming Language :: Python :: 3.10
24    License :: OSI Approved :: BSD License
25    Programming Language :: Python :: Implementation :: PyPy
26    Programming Language :: Python :: Implementation :: CPython
27    Programming Language :: C++
28    Topic :: Software Development :: Libraries :: Python Modules
29
30keywords =
31    C++11
32    Python bindings
33
34[options]
35python_requires = >=2.7, !=3.0, !=3.1, !=3.2, !=3.3, !=3.4
36zip_safe = False
37
38[bdist_wheel]
39universal=1
40
41
42[flake8]
43max-line-length = 99
44show_source = True
45exclude = .git, __pycache__, build, dist, docs, tools, venv
46ignore =
47    # required for pretty matrix formatting: multiple spaces after `,` and `[`
48    E201, E241, W504,
49    # camelcase 'cPickle' imported as lowercase 'pickle'
50    N813
51    # Black conflict
52    W503, E203
53
54
55[tool:pytest]
56timeout = 300
57