2020-09-16 21:13:41 +00:00
|
|
|
[metadata]
|
2020-09-17 19:40:09 +00:00
|
|
|
long_description = file: README.rst
|
|
|
|
long_description_content_type = text/x-rst
|
2020-09-16 21:13:41 +00:00
|
|
|
description = Seamless operability between C++11 and Python
|
|
|
|
author = Wenzel Jakob
|
2020-09-30 21:17:59 +00:00
|
|
|
author_email = wenzel.jakob@epfl.ch
|
|
|
|
url = https://github.com/pybind/pybind11
|
2020-09-16 21:13:41 +00:00
|
|
|
license = BSD
|
|
|
|
|
|
|
|
classifiers =
|
|
|
|
Development Status :: 5 - Production/Stable
|
|
|
|
Intended Audience :: Developers
|
|
|
|
Topic :: Software Development :: Libraries :: Python Modules
|
|
|
|
Topic :: Utilities
|
|
|
|
Programming Language :: C++
|
|
|
|
Programming Language :: Python :: 2.7
|
|
|
|
Programming Language :: Python :: 3
|
|
|
|
Programming Language :: Python :: 3.5
|
|
|
|
Programming Language :: Python :: 3.6
|
|
|
|
Programming Language :: Python :: 3.7
|
|
|
|
Programming Language :: Python :: 3.8
|
2020-10-21 20:21:44 +00:00
|
|
|
Programming Language :: Python :: 3.9
|
2021-08-03 19:05:54 +00:00
|
|
|
Programming Language :: Python :: 3.10
|
2020-09-16 21:13:41 +00:00
|
|
|
License :: OSI Approved :: BSD License
|
|
|
|
Programming Language :: Python :: Implementation :: PyPy
|
|
|
|
Programming Language :: Python :: Implementation :: CPython
|
|
|
|
Programming Language :: C++
|
|
|
|
Topic :: Software Development :: Libraries :: Python Modules
|
|
|
|
|
|
|
|
keywords =
|
|
|
|
C++11
|
|
|
|
Python bindings
|
|
|
|
|
|
|
|
[options]
|
|
|
|
python_requires = >=2.7, !=3.0, !=3.1, !=3.2, !=3.3, !=3.4
|
|
|
|
zip_safe = False
|
|
|
|
|
2015-10-15 16:24:12 +00:00
|
|
|
[bdist_wheel]
|
|
|
|
universal=1
|
2016-11-20 20:21:54 +00:00
|
|
|
|
2020-09-16 21:13:41 +00:00
|
|
|
|
2016-11-20 20:21:54 +00:00
|
|
|
[flake8]
|
2016-12-12 23:59:28 +00:00
|
|
|
max-line-length = 99
|
2016-11-20 20:21:54 +00:00
|
|
|
show_source = True
|
|
|
|
exclude = .git, __pycache__, build, dist, docs, tools, venv
|
|
|
|
ignore =
|
2017-11-02 01:08:06 +00:00
|
|
|
# required for pretty matrix formatting: multiple spaces after `,` and `[`
|
2019-02-04 16:09:47 +00:00
|
|
|
E201, E241, W504,
|
|
|
|
# camelcase 'cPickle' imported as lowercase 'pickle'
|
|
|
|
N813
|
2020-09-16 21:13:41 +00:00
|
|
|
# Black conflict
|
|
|
|
W503, E203
|
2020-10-14 18:08:41 +00:00
|
|
|
|
2021-01-27 00:25:35 +00:00
|
|
|
|
|
|
|
[tool:pytest]
|
|
|
|
timeout = 300
|