Metadata-Version: 2.4
Name: dependaman
Version: 1.1.1
Summary: Understand your Python project's internal structure. Find cycles, dead code, and coupling hotspots — visualized as an interactive HTML graph. Zero external dependencies.
Author-email: Jacobo Bedoya <jacobobedoya@gmail.com>
License-Expression: MIT
Project-URL: Homepage, https://jacobitosuperstar.codeberg.page/DependaMan/en/
Project-URL: Repository, https://codeberg.org/jacobitosuperstar/DependaMan
Project-URL: Changelog, https://jacobitosuperstar.codeberg.page/DependaMan/en/changelog/
Project-URL: Software Design, https://jacobitosuperstar.codeberg.page/DependaMan/en/software-design/
Project-URL: Roadmap, https://jacobitosuperstar.codeberg.page/DependaMan/en/roadmap/
Keywords: dependency,analysis,visualization,graph,dead-code,architecture,ast
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: Quality Assurance
Classifier: Topic :: Utilities
Requires-Python: >=3.12
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# DependaMan

Understand your Python project's internal structure. Find cycles, dead modules,
hotspots, and architecture problems — visualized as an interactive graph.

No external Python dependencies. Pure stdlib only.

---

## Installation

```bash
pip install dependaman
```

## Usage

**CLI:**

```bash
dependaman              # analyzes current directory, opens browser
dependaman /path/to/project
```

**Python API:**

```python
from dependaman import dependaman

html = dependaman(".", in_memory=True)   # returns HTML string
dependaman(".")                          # writes output.html + opens browser
```

---

## Documentation

- [Website](https://jacobitosuperstar.codeberg.page/DependaMan/en/)
- [Software Design](https://jacobitosuperstar.codeberg.page/DependaMan/en/software-design/)
- [Roadmap](https://jacobitosuperstar.codeberg.page/DependaMan/en/roadmap/)
- [Changelog](https://jacobitosuperstar.codeberg.page/DependaMan/en/changelog/)
- [Repository](https://codeberg.org/jacobitosuperstar/DependaMan)
