├── .gitignore ├── LICENSE ├── README.rst ├── conda-recipe └── meta.yaml ├── src └── conda_depgraph │ ├── __init__.py │ ├── __main__.py │ ├── algorithms.py │ ├── cli.py │ ├── conda_facade.py │ ├── exceptions.py │ └── outputs.py └── tests ├── conftest.py ├── test_algorithms.py ├── test_cli.py └── test_outputs.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omegacen/conda-depgraph/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omegacen/conda-depgraph/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omegacen/conda-depgraph/HEAD/README.rst -------------------------------------------------------------------------------- /conda-recipe/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omegacen/conda-depgraph/HEAD/conda-recipe/meta.yaml -------------------------------------------------------------------------------- /src/conda_depgraph/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '1.2.2' 2 | -------------------------------------------------------------------------------- /src/conda_depgraph/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omegacen/conda-depgraph/HEAD/src/conda_depgraph/__main__.py -------------------------------------------------------------------------------- /src/conda_depgraph/algorithms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omegacen/conda-depgraph/HEAD/src/conda_depgraph/algorithms.py -------------------------------------------------------------------------------- /src/conda_depgraph/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omegacen/conda-depgraph/HEAD/src/conda_depgraph/cli.py -------------------------------------------------------------------------------- /src/conda_depgraph/conda_facade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omegacen/conda-depgraph/HEAD/src/conda_depgraph/conda_facade.py -------------------------------------------------------------------------------- /src/conda_depgraph/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omegacen/conda-depgraph/HEAD/src/conda_depgraph/exceptions.py -------------------------------------------------------------------------------- /src/conda_depgraph/outputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omegacen/conda-depgraph/HEAD/src/conda_depgraph/outputs.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omegacen/conda-depgraph/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_algorithms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omegacen/conda-depgraph/HEAD/tests/test_algorithms.py -------------------------------------------------------------------------------- /tests/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omegacen/conda-depgraph/HEAD/tests/test_cli.py -------------------------------------------------------------------------------- /tests/test_outputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omegacen/conda-depgraph/HEAD/tests/test_outputs.py --------------------------------------------------------------------------------