Development of an internal social media platform with personalised dashboards for students
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

METADATA 4.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. Metadata-Version: 2.0
  2. Name: pylint
  3. Version: 1.9.2
  4. Summary: python code static checker
  5. Home-page: https://github.com/PyCQA/pylint
  6. Author: Python Code Quality Authority
  7. Author-email: code-quality@python.org
  8. License: GPL
  9. Platform: UNKNOWN
  10. Classifier: Development Status :: 4 - Beta
  11. Classifier: Environment :: Console
  12. Classifier: Intended Audience :: Developers
  13. Classifier: License :: OSI Approved :: GNU General Public License (GPL)
  14. Classifier: Operating System :: OS Independent
  15. Classifier: Programming Language :: Python
  16. Classifier: Programming Language :: Python :: 2
  17. Classifier: Programming Language :: Python :: 2.7
  18. Classifier: Programming Language :: Python :: 3
  19. Classifier: Programming Language :: Python :: 3.4
  20. Classifier: Programming Language :: Python :: 3.5
  21. Classifier: Programming Language :: Python :: 3.6
  22. Classifier: Programming Language :: Python :: Implementation :: CPython
  23. Classifier: Programming Language :: Python :: Implementation :: PyPy
  24. Classifier: Topic :: Software Development :: Debuggers
  25. Classifier: Topic :: Software Development :: Quality Assurance
  26. Classifier: Topic :: Software Development :: Testing
  27. Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*
  28. Requires-Dist: astroid (<2.0,>=1.6)
  29. Requires-Dist: six
  30. Requires-Dist: isort (>=4.2.5)
  31. Requires-Dist: mccabe
  32. Requires-Dist: singledispatch; python_version<"3.4"
  33. Requires-Dist: configparser; python_version=="2.7"
  34. Requires-Dist: backports.functools-lru-cache; python_version=="2.7"
  35. Requires-Dist: colorama; sys_platform=="win32"
  36. README for Pylint - http://www.pylint.org/
  37. ==========================================
  38. .. image:: https://travis-ci.org/PyCQA/pylint.svg?branch=master
  39. :target: https://travis-ci.org/PyCQA/pylint
  40. .. image:: https://ci.appveyor.com/api/projects/status/rbvwhakyj1y09atb/branch/master?svg=true
  41. :alt: AppVeyor Build Status
  42. :target: https://ci.appveyor.com/project/PCManticore/pylint
  43. .. image:: https://coveralls.io/repos/github/PyCQA/pylint/badge.svg?branch=master
  44. :target: https://coveralls.io/github/PyCQA/pylint?branch=master
  45. .. image:: https://img.shields.io/pypi/v/pylint.svg
  46. :alt: Pypi Package version
  47. :target: https://pypi.python.org/pypi/pylint
  48. .. image:: https://readthedocs.org/projects/pylint/badge/?version=latest
  49. :target: http://pylint.readthedocs.io/en/latest/?badge=latest
  50. :alt: Documentation Status
  51. Pylint is a Python source code analyzer which looks for programming errors,
  52. helps enforcing a coding standard and sniffs for some code smells (as defined in
  53. Martin Fowler's Refactoring book).
  54. Pylint has many rules enabled by default, way too much to silence them all on a
  55. minimally sized program. It's highly configurable and handle pragmas to control
  56. it from within your code. Additionally, it is possible to write plugins to add
  57. your own checks.
  58. It's a free software distributed under the GNU General Public Licence.
  59. Development is hosted on GitHub: https://github.com/PyCQA/pylint/
  60. You can use the code-quality@python.org mailing list to discuss about
  61. Pylint. Subscribe at https://mail.python.org/mailman/listinfo/code-quality/
  62. or read the archives at https://mail.python.org/pipermail/code-quality/
  63. Install
  64. -------
  65. Pylint requires astroid package (the later the better).
  66. * https://github.com/PyCQA/astroid
  67. Installation should be as simple as ::
  68. python -m pip install astroid
  69. Pylint requires isort package (the later the better).
  70. * https://github.com/timothycrosley/isort
  71. Installation should be as simple as ::
  72. python -m pip install isort
  73. If you want to install from a source distribution, extract the tarball and run
  74. the following commands ::
  75. python setup.py install
  76. You'll have to install dependencies in a similar way. For debian and
  77. rpm packages, use your usual tools according to your Linux distribution.
  78. More information about installation and available distribution format
  79. may be found in the user manual in the *doc* subdirectory.
  80. Documentation
  81. -------------
  82. Look in the doc/ subdirectory or at http://docs.pylint.org
  83. Pylint is shipped with following additional commands:
  84. * pyreverse: an UML diagram generator
  85. * symilar: an independent similarities checker
  86. * epylint: Emacs and Flymake compatible Pylint