- 8 DB models (services, incidents, monitors, subscribers, etc.) - Full CRUD API for services, incidents, monitors - Public status page with live data - Incident detail page with timeline - API key authentication - Uptime monitoring scheduler - 13 tests passing - TECHNICAL_DESIGN.md with full spec
56 lines
2.3 KiB
Text
56 lines
2.3 KiB
Text
Metadata-Version: 2.4
|
|
Name: mypy
|
|
Version: 1.20.2
|
|
Summary: Optional static typing for Python
|
|
Author-email: Jukka Lehtosalo <jukka.lehtosalo@iki.fi>
|
|
License-Expression: MIT
|
|
Project-URL: Homepage, https://www.mypy-lang.org/
|
|
Project-URL: Documentation, https://mypy.readthedocs.io/en/stable/index.html
|
|
Project-URL: Repository, https://github.com/python/mypy
|
|
Project-URL: Changelog, https://github.com/python/mypy/blob/master/CHANGELOG.md
|
|
Project-URL: Issues, https://github.com/python/mypy/issues
|
|
Classifier: Development Status :: 5 - Production/Stable
|
|
Classifier: Environment :: Console
|
|
Classifier: Intended Audience :: Developers
|
|
Classifier: Programming Language :: Python :: 3
|
|
Classifier: Programming Language :: Python :: 3.10
|
|
Classifier: Programming Language :: Python :: 3.11
|
|
Classifier: Programming Language :: Python :: 3.12
|
|
Classifier: Programming Language :: Python :: 3.13
|
|
Classifier: Programming Language :: Python :: 3.14
|
|
Classifier: Topic :: Software Development
|
|
Classifier: Typing :: Typed
|
|
Requires-Python: >=3.10
|
|
Description-Content-Type: text/x-rst
|
|
License-File: LICENSE
|
|
License-File: mypy/typeshed/LICENSE
|
|
Requires-Dist: typing_extensions>=4.6.0; python_version < "3.15"
|
|
Requires-Dist: typing_extensions>=4.14.0; python_version >= "3.15"
|
|
Requires-Dist: mypy_extensions>=1.0.0
|
|
Requires-Dist: pathspec>=1.0.0
|
|
Requires-Dist: tomli>=1.1.0; python_version < "3.11"
|
|
Requires-Dist: librt>=0.8.0; platform_python_implementation != "PyPy"
|
|
Provides-Extra: dmypy
|
|
Requires-Dist: psutil>=4.0; extra == "dmypy"
|
|
Provides-Extra: mypyc
|
|
Requires-Dist: setuptools>=50; extra == "mypyc"
|
|
Provides-Extra: python2
|
|
Provides-Extra: reports
|
|
Requires-Dist: lxml; extra == "reports"
|
|
Provides-Extra: install-types
|
|
Requires-Dist: pip; extra == "install-types"
|
|
Provides-Extra: faster-cache
|
|
Requires-Dist: orjson; extra == "faster-cache"
|
|
Provides-Extra: native-parser
|
|
Requires-Dist: ast-serialize<1.0.0,>=0.1.1; extra == "native-parser"
|
|
Dynamic: license-file
|
|
|
|
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.
|