Metadata-Version: 2.1
Name: modulegraph2
Version: 2.2
Summary: A module import dependency graph for Python projects.
Home-page: https://modulegraph2.readthedocs.io/
License: MIT
Author: Ronald Oussoren
Author-email: ronaldoussoren@mac.com
Requires-Python: >=3.6,<4
Description-Content-Type: text/x-rst
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: Build Tools
Classifier: Development Status :: 4 - Beta
Requires-Dist: typing_extensions
Requires-Dist: objectgraph
Requires-Dist: dataclasses; python_version < '3.7'
Project-URL: Documentation, https://modulegraph2.readthedocs.io/
Project-URL: Issue Tracker, https://github.com/ronaldoussoren/modulegraph2/issues
Project-URL: Source Code, https://github.com/ronaldoussoren/modulegraph2/
Project-URL: Supporting, https://blog.ronaldoussoren.net/support/

Introduction
------------

Modulegraph2 is a library for creating and introspecting
the dependency graph between Python modules. The graph is
created using static analisys from source and byte code.

The dependency graph contains information about packages,
modules, extensions and their dependencies. The dependencies
are annotated with relevant information about the import
statement.

Modules that from a distribution installed using pip also have
a link to information about that distribution.

There is `documentation at readthedocs <https://modulegraph2.readthedocs.io/>`_

.. image:: https://img.shields.io/badge/code%20style-black-000000.svg
    :target: https://github.com/psf/black

CI Status
.........

.. image:: https://github.com/ronaldoussoren/modulegraph2/workflows/Lint/badge.svg
.. image:: https://github.com/ronaldoussoren/modulegraph2/workflows/Test/badge.svg

Historic
........

Modulegraph2 is a complete rewrite of `modulegraph <https://pypi.org/project/modulegraph/>`_,
using lessons learned in that project but with a complete new
Python 3 code base and full test coverage.

