METADATA 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. Metadata-Version: 2.1
  2. Name: mypy
  3. Version: 1.5.1
  4. Summary: Optional static typing for Python
  5. Home-page: https://www.mypy-lang.org/
  6. Author: Jukka Lehtosalo
  7. Author-email: jukka.lehtosalo@iki.fi
  8. License: MIT License
  9. Project-URL: News, https://mypy-lang.org/news.html
  10. Project-URL: Documentation, https://mypy.readthedocs.io/en/stable/index.html
  11. Project-URL: Repository, https://github.com/python/mypy
  12. Classifier: Development Status :: 5 - Production/Stable
  13. Classifier: Environment :: Console
  14. Classifier: Intended Audience :: Developers
  15. Classifier: License :: OSI Approved :: MIT License
  16. Classifier: Programming Language :: Python :: 3
  17. Classifier: Programming Language :: Python :: 3.8
  18. Classifier: Programming Language :: Python :: 3.9
  19. Classifier: Programming Language :: Python :: 3.10
  20. Classifier: Programming Language :: Python :: 3.11
  21. Classifier: Topic :: Software Development
  22. Classifier: Typing :: Typed
  23. Requires-Python: >=3.8
  24. License-File: LICENSE
  25. Requires-Dist: typing-extensions >=4.1.0
  26. Requires-Dist: mypy-extensions >=1.0.0
  27. Requires-Dist: tomli >=1.1.0 ; python_version < "3.11"
  28. Provides-Extra: dmypy
  29. Requires-Dist: psutil >=4.0 ; extra == 'dmypy'
  30. Provides-Extra: install-types
  31. Requires-Dist: pip ; extra == 'install-types'
  32. Provides-Extra: python2
  33. Provides-Extra: reports
  34. Requires-Dist: lxml ; extra == 'reports'
  35. Mypy -- Optional Static Typing for Python
  36. =========================================
  37. Add type annotations to your Python programs, and use mypy to type
  38. check them. Mypy is essentially a Python linter on steroids, and it
  39. can catch many programming errors by analyzing your program, without
  40. actually having to run it. Mypy has a powerful type system with
  41. features such as type inference, gradual typing, generics and union
  42. types.