├── .gitignore ├── COPYING ├── MANIFEST.in ├── README.md ├── ansiblerolesgraph └── __init__.py ├── example.png ├── setup.cfg └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.egg-info 2 | *.pyc 3 | /dist/ 4 | /build/ 5 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebn/ansible-roles-graph/HEAD/COPYING -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebn/ansible-roles-graph/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebn/ansible-roles-graph/HEAD/README.md -------------------------------------------------------------------------------- /ansiblerolesgraph/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebn/ansible-roles-graph/HEAD/ansiblerolesgraph/__init__.py -------------------------------------------------------------------------------- /example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebn/ansible-roles-graph/HEAD/example.png -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebn/ansible-roles-graph/HEAD/setup.py --------------------------------------------------------------------------------