https://github.com/python-coincidence/dep_checker
Tool to check all requirements are actually required.
https://github.com/python-coincidence/dep_checker
dependencies linter pre-commit python
Last synced: 5 months ago
JSON representation
Tool to check all requirements are actually required.
- Host: GitHub
- URL: https://github.com/python-coincidence/dep_checker
- Owner: python-coincidence
- License: mit
- Created: 2020-11-09T10:34:12.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2026-01-10T12:48:42.000Z (5 months ago)
- Last Synced: 2026-01-11T03:50:09.748Z (5 months ago)
- Topics: dependencies, linter, pre-commit, python
- Language: Python
- Homepage: https://dep-checker.readthedocs.io/en/latest
- Size: 353 KB
- Stars: 6
- Watchers: 1
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.rst
- Contributing: CONTRIBUTING.rst
- License: LICENSE
Awesome Lists containing this project
README
############
dep_checker
############
.. start short_desc
**Tool to check all requirements are actually required.**
.. end short_desc
.. start shields
.. list-table::
:stub-columns: 1
:widths: 10 90
* - Docs
- |docs| |docs_check|
* - Tests
- |actions_linux| |actions_windows| |actions_macos| |coveralls|
* - PyPI
- |pypi-version| |supported-versions| |supported-implementations| |wheel|
* - Activity
- |commits-latest| |commits-since| |maintained| |pypi-downloads|
* - QA
- |codefactor| |actions_flake8| |actions_mypy|
* - Other
- |license| |language| |requires|
.. |docs| image:: https://img.shields.io/readthedocs/dep-checker/latest?logo=read-the-docs
:target: https://dep-checker.readthedocs.io/en/latest
:alt: Documentation Build Status
.. |docs_check| image:: https://github.com/python-coincidence/dep_checker/workflows/Docs%20Check/badge.svg
:target: https://github.com/python-coincidence/dep_checker/actions?query=workflow%3A%22Docs+Check%22
:alt: Docs Check Status
.. |actions_linux| image:: https://github.com/python-coincidence/dep_checker/workflows/Linux/badge.svg
:target: https://github.com/python-coincidence/dep_checker/actions?query=workflow%3A%22Linux%22
:alt: Linux Test Status
.. |actions_windows| image:: https://github.com/python-coincidence/dep_checker/workflows/Windows/badge.svg
:target: https://github.com/python-coincidence/dep_checker/actions?query=workflow%3A%22Windows%22
:alt: Windows Test Status
.. |actions_macos| image:: https://github.com/python-coincidence/dep_checker/workflows/macOS/badge.svg
:target: https://github.com/python-coincidence/dep_checker/actions?query=workflow%3A%22macOS%22
:alt: macOS Test Status
.. |actions_flake8| image:: https://github.com/python-coincidence/dep_checker/workflows/Flake8/badge.svg
:target: https://github.com/python-coincidence/dep_checker/actions?query=workflow%3A%22Flake8%22
:alt: Flake8 Status
.. |actions_mypy| image:: https://github.com/python-coincidence/dep_checker/workflows/mypy/badge.svg
:target: https://github.com/python-coincidence/dep_checker/actions?query=workflow%3A%22mypy%22
:alt: mypy status
.. |requires| image:: https://dependency-dash.repo-helper.uk/github/python-coincidence/dep_checker/badge.svg
:target: https://dependency-dash.repo-helper.uk/github/python-coincidence/dep_checker/
:alt: Requirements Status
.. |coveralls| image:: https://img.shields.io/coveralls/github/python-coincidence/dep_checker/master?logo=coveralls
:target: https://coveralls.io/github/python-coincidence/dep_checker?branch=master
:alt: Coverage
.. |codefactor| image:: https://img.shields.io/codefactor/grade/github/python-coincidence/dep_checker?logo=codefactor
:target: https://www.codefactor.io/repository/github/python-coincidence/dep_checker
:alt: CodeFactor Grade
.. |pypi-version| image:: https://img.shields.io/pypi/v/dep_checker
:target: https://pypi.org/project/dep_checker/
:alt: PyPI - Package Version
.. |supported-versions| image:: https://img.shields.io/pypi/pyversions/dep_checker?logo=python&logoColor=white
:target: https://pypi.org/project/dep_checker/
:alt: PyPI - Supported Python Versions
.. |supported-implementations| image:: https://img.shields.io/pypi/implementation/dep_checker
:target: https://pypi.org/project/dep_checker/
:alt: PyPI - Supported Implementations
.. |wheel| image:: https://img.shields.io/pypi/wheel/dep_checker
:target: https://pypi.org/project/dep_checker/
:alt: PyPI - Wheel
.. |license| image:: https://img.shields.io/github/license/python-coincidence/dep_checker
:target: https://github.com/python-coincidence/dep_checker/blob/master/LICENSE
:alt: License
.. |language| image:: https://img.shields.io/github/languages/top/python-coincidence/dep_checker
:alt: GitHub top language
.. |commits-since| image:: https://img.shields.io/github/commits-since/python-coincidence/dep_checker/v0.9.0
:target: https://github.com/python-coincidence/dep_checker/pulse
:alt: GitHub commits since tagged version
.. |commits-latest| image:: https://img.shields.io/github/last-commit/python-coincidence/dep_checker
:target: https://github.com/python-coincidence/dep_checker/commit/master
:alt: GitHub last commit
.. |maintained| image:: https://img.shields.io/maintenance/yes/2026
:alt: Maintenance
.. |pypi-downloads| image:: https://img.shields.io/pypi/dm/dep_checker
:target: https://pypistats.org/packages/dep_checker/
:alt: PyPI - Downloads
.. end shields
Installation
--------------
.. start installation
``dep_checker`` can be installed from PyPI.
To install with ``pip``:
.. code-block:: bash
$ python -m pip install dep_checker
.. end installation