setup.cfg 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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. classifiers =
  10. Development Status :: 5 - Production/Stable
  11. Intended Audience :: Developers
  12. Topic :: Software Development :: Libraries :: Python Modules
  13. Topic :: Utilities
  14. Programming Language :: C++
  15. Programming Language :: Python :: 2.7
  16. Programming Language :: Python :: 3
  17. Programming Language :: Python :: 3.5
  18. Programming Language :: Python :: 3.6
  19. Programming Language :: Python :: 3.7
  20. Programming Language :: Python :: 3.8
  21. Programming Language :: Python :: 3.9
  22. Programming Language :: Python :: 3.10
  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. keywords =
  29. C++11
  30. Python bindings
  31. [options]
  32. python_requires = >=2.7, !=3.0, !=3.1, !=3.2, !=3.3, !=3.4
  33. zip_safe = False
  34. [bdist_wheel]
  35. universal=1
  36. [flake8]
  37. max-line-length = 99
  38. show_source = True
  39. exclude = .git, __pycache__, build, dist, docs, tools, venv
  40. ignore =
  41. # required for pretty matrix formatting: multiple spaces after `,` and `[`
  42. E201, E241, W504,
  43. # camelcase 'cPickle' imported as lowercase 'pickle'
  44. N813
  45. # Black conflict
  46. W503, E203
  47. [tool:pytest]
  48. timeout = 300