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++
|
2022-02-11 02:28:08 +00:00
|
|
|
Programming Language :: Python :: 3 :: Only
|
2020-09-16 21:13:41 +00:00
|
|
|
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
|
2022-07-06 20:35:12 +00:00
|
|
|
Programming Language :: Python :: 3.11
|
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
|
|
|
|
|
2022-02-02 22:34:15 +00:00
|
|
|
project_urls =
|
|
|
|
Documentation = https://pybind11.readthedocs.io/
|
|
|
|
Bug Tracker = https://github.com/pybind/pybind11/issues
|
|
|
|
Discussions = https://github.com/pybind/pybind11/discussions
|
|
|
|
Changelog = https://pybind11.readthedocs.io/en/latest/changelog.html
|
|
|
|
Chat = https://gitter.im/pybind/Lobby
|
|
|
|
|
2020-09-16 21:13:41 +00:00
|
|
|
[options]
|
2022-02-12 00:06:16 +00:00
|
|
|
python_requires = >=3.6
|
2020-09-16 21:13:41 +00:00
|
|
|
zip_safe = False
|
|
|
|
|
|
|
|
|
2016-11-20 20:21:54 +00:00
|
|
|
[flake8]
|
2022-02-11 02:28:08 +00:00
|
|
|
max-line-length = 120
|
2016-11-20 20:21:54 +00:00
|
|
|
show_source = True
|
|
|
|
exclude = .git, __pycache__, build, dist, docs, tools, venv
|
2022-12-10 04:18:36 +00:00
|
|
|
extend-ignore = E203, E722
|
|
|
|
extend-select = B902, B904
|