Repository URL to install this package:
|
Version:
0.630 ▾
|
mypy
/
METADATA
|
|---|
Metadata-Version: 2.1 Name: mypy Version: 0.630 Summary: Optional static typing for Python Home-page: http://www.mypy-lang.org/ Author: Jukka Lehtosalo Author-email: jukka.lehtosalo@iki.fi License: MIT License Platform: UNKNOWN Classifier: Development Status :: 3 - Alpha Classifier: Environment :: Console Classifier: Intended Audience :: Developers Classifier: License :: OSI Approved :: MIT License Classifier: Programming Language :: Python :: 3 Classifier: Programming Language :: Python :: 3.4 Classifier: Programming Language :: Python :: 3.5 Classifier: Programming Language :: Python :: 3.6 Classifier: Topic :: Software Development Provides-Extra: dmypy Requires-Dist: typed-ast (<1.2.0,>=1.1.0) Requires-Dist: mypy-extensions (<0.5.0,>=0.4.0) Requires-Dist: typing (>=3.5.3); python_version < "3.5" Provides-Extra: dmypy Provides-Extra: dmypy Requires-Dist: psutil (<5.5.0,>=5.4.0); (sys_platform != "win32") and extra == 'dmypy' Mypy -- Optional Static Typing for Python ========================================= Add type annotations to your Python programs, and use mypy to type check them. Mypy is essentially a Python linter on steroids, and it can catch many programming errors by analyzing your program, without actually having to run it. Mypy has a powerful type system with features such as type inference, gradual typing, generics and union types.