├── .gitignore ├── CHANGELOG.rst ├── Dockerfile ├── LICENSE ├── README.md ├── app.py ├── blacklists └── conda-forge │ └── abi.yml ├── environment.yml ├── graph.py ├── news └── TEMPLATE.rst ├── rever.xsh └── test_application.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regro/conda-metachannel/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regro/conda-metachannel/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regro/conda-metachannel/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regro/conda-metachannel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regro/conda-metachannel/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regro/conda-metachannel/HEAD/app.py -------------------------------------------------------------------------------- /blacklists/conda-forge/abi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regro/conda-metachannel/HEAD/blacklists/conda-forge/abi.yml -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regro/conda-metachannel/HEAD/environment.yml -------------------------------------------------------------------------------- /graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regro/conda-metachannel/HEAD/graph.py -------------------------------------------------------------------------------- /news/TEMPLATE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regro/conda-metachannel/HEAD/news/TEMPLATE.rst -------------------------------------------------------------------------------- /rever.xsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regro/conda-metachannel/HEAD/rever.xsh -------------------------------------------------------------------------------- /test_application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regro/conda-metachannel/HEAD/test_application.py --------------------------------------------------------------------------------