METADATA 3.7 KB

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