├── .gitignore ├── CHANGELOG.txt ├── LICENSE.md ├── MANIFEST ├── README.md ├── anaconda_clean.py ├── conda-recipe ├── build.sh └── meta.yaml └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.pyc 3 | __pycache__/ 4 | -------------------------------------------------------------------------------- /CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/anaconda-clean/HEAD/CHANGELOG.txt -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/anaconda-clean/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/anaconda-clean/HEAD/MANIFEST -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/anaconda-clean/HEAD/README.md -------------------------------------------------------------------------------- /anaconda_clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/anaconda-clean/HEAD/anaconda_clean.py -------------------------------------------------------------------------------- /conda-recipe/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/anaconda-clean/HEAD/conda-recipe/build.sh -------------------------------------------------------------------------------- /conda-recipe/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/anaconda-clean/HEAD/conda-recipe/meta.yaml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/anaconda-clean/HEAD/setup.py --------------------------------------------------------------------------------