METADATA 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. Metadata-Version: 2.1
  2. Name: flake8
  3. Version: 5.0.4
  4. Summary: the modular source code checker: pep8 pyflakes and co
  5. Home-page: https://github.com/pycqa/flake8
  6. Author: Tarek Ziade
  7. Author-email: tarek@ziade.org
  8. Maintainer: Ian Stapleton Cordasco
  9. Maintainer-email: graffatcolmingov@gmail.com
  10. License: MIT
  11. Platform: UNKNOWN
  12. Classifier: Development Status :: 5 - Production/Stable
  13. Classifier: Environment :: Console
  14. Classifier: Framework :: Flake8
  15. Classifier: Intended Audience :: Developers
  16. Classifier: License :: OSI Approved :: MIT License
  17. Classifier: Programming Language :: Python
  18. Classifier: Programming Language :: Python :: 3
  19. Classifier: Programming Language :: Python :: 3 :: Only
  20. Classifier: Programming Language :: Python :: 3.6
  21. Classifier: Programming Language :: Python :: 3.7
  22. Classifier: Programming Language :: Python :: 3.8
  23. Classifier: Programming Language :: Python :: 3.9
  24. Classifier: Programming Language :: Python :: 3.10
  25. Classifier: Programming Language :: Python :: Implementation :: CPython
  26. Classifier: Programming Language :: Python :: Implementation :: PyPy
  27. Classifier: Topic :: Software Development :: Libraries :: Python Modules
  28. Classifier: Topic :: Software Development :: Quality Assurance
  29. Requires-Python: >=3.6.1
  30. Description-Content-Type: text/x-rst
  31. License-File: LICENSE
  32. Requires-Dist: mccabe (<0.8.0,>=0.7.0)
  33. Requires-Dist: pycodestyle (<2.10.0,>=2.9.0)
  34. Requires-Dist: pyflakes (<2.6.0,>=2.5.0)
  35. Requires-Dist: importlib-metadata (<4.3,>=1.1.0) ; python_version < "3.8"
  36. .. image:: https://github.com/PyCQA/flake8/workflows/main/badge.svg
  37. :target: https://github.com/PyCQA/flake8/actions?query=workflow%3Amain
  38. :alt: build status
  39. .. image:: https://results.pre-commit.ci/badge/github/PyCQA/flake8/main.svg
  40. :target: https://results.pre-commit.ci/latest/github/PyCQA/flake8/main
  41. :alt: pre-commit.ci status
  42. .. image:: https://img.shields.io/discord/825463413634891776.svg
  43. :target: https://discord.gg/qYxpadCgkx
  44. :alt: Discord
  45. ========
  46. Flake8
  47. ========
  48. Flake8 is a wrapper around these tools:
  49. - PyFlakes
  50. - pycodestyle
  51. - Ned Batchelder's McCabe script
  52. Flake8 runs all the tools by launching the single ``flake8`` command.
  53. It displays the warnings in a per-file, merged output.
  54. It also adds a few features:
  55. - files that contain this line are skipped::
  56. # flake8: noqa
  57. - lines that contain a ``# noqa`` comment at the end will not issue warnings.
  58. - you can ignore specific errors on a line with ``# noqa: <error>``, e.g.,
  59. ``# noqa: E234``. Multiple codes can be given, separated by comma. The ``noqa`` token is case insensitive, the colon before the list of codes is required otherwise the part after ``noqa`` is ignored
  60. - Git and Mercurial hooks
  61. - extendable through ``flake8.extension`` and ``flake8.formatting`` entry
  62. points
  63. Quickstart
  64. ==========
  65. See our `quickstart documentation
  66. <https://flake8.pycqa.org/en/latest/index.html#quickstart>`_ for how to install
  67. and get started with Flake8.
  68. Frequently Asked Questions
  69. ==========================
  70. Flake8 maintains an `FAQ <https://flake8.pycqa.org/en/latest/faq.html>`_ in its
  71. documentation.
  72. Questions or Feedback
  73. =====================
  74. If you have questions you'd like to ask the developers, or feedback you'd like
  75. to provide, feel free to use the mailing list: code-quality@python.org
  76. We would love to hear from you. Additionally, if you have a feature you'd like
  77. to suggest, the mailing list would be the best place for it.
  78. Links
  79. =====
  80. * `Flake8 Documentation <https://flake8.pycqa.org/en/latest/>`_
  81. * `GitHub Project <https://github.com/pycqa/flake8>`_
  82. * `All (Open and Closed) Issues
  83. <https://github.com/pycqa/flake8/issues?q=is%3Aissue>`_
  84. * `Code-Quality Archives
  85. <https://mail.python.org/mailman/listinfo/code-quality>`_
  86. * `Code of Conduct
  87. <https://flake8.pycqa.org/en/latest/internal/contributing.html#code-of-conduct>`_
  88. * `Getting Started Contributing
  89. <https://flake8.pycqa.org/en/latest/internal/contributing.html>`_
  90. Maintenance
  91. ===========
  92. Flake8 was created by Tarek Ziadé and is currently maintained by `Ian Cordasco
  93. <https://www.coglib.com/~icordasc/>`_