├── .gitattributes ├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.md ├── conda_execute.recipe ├── bld.bat ├── build.sh └── meta.yaml ├── conda_execute ├── __init__.py ├── _version.py ├── conda_interface.py ├── config.py ├── execute.py ├── lock.py ├── tests │ ├── __init__.py │ ├── test_execute.py │ ├── test_locked.py │ └── test_tmpenv.py └── tmpenv.py ├── example.sh ├── requirements.txt ├── setup.cfg ├── setup.py ├── tests └── run_tests.sh └── versioneer.py /.gitattributes: -------------------------------------------------------------------------------- 1 | conda_execute/_version.py export-subst 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-tools/conda-execute/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-tools/conda-execute/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-tools/conda-execute/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-tools/conda-execute/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-tools/conda-execute/HEAD/README.md -------------------------------------------------------------------------------- /conda_execute.recipe/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-tools/conda-execute/HEAD/conda_execute.recipe/bld.bat -------------------------------------------------------------------------------- /conda_execute.recipe/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-tools/conda-execute/HEAD/conda_execute.recipe/build.sh -------------------------------------------------------------------------------- /conda_execute.recipe/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-tools/conda-execute/HEAD/conda_execute.recipe/meta.yaml -------------------------------------------------------------------------------- /conda_execute/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-tools/conda-execute/HEAD/conda_execute/__init__.py -------------------------------------------------------------------------------- /conda_execute/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-tools/conda-execute/HEAD/conda_execute/_version.py -------------------------------------------------------------------------------- /conda_execute/conda_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-tools/conda-execute/HEAD/conda_execute/conda_interface.py -------------------------------------------------------------------------------- /conda_execute/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-tools/conda-execute/HEAD/conda_execute/config.py -------------------------------------------------------------------------------- /conda_execute/execute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-tools/conda-execute/HEAD/conda_execute/execute.py -------------------------------------------------------------------------------- /conda_execute/lock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-tools/conda-execute/HEAD/conda_execute/lock.py -------------------------------------------------------------------------------- /conda_execute/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-tools/conda-execute/HEAD/conda_execute/tests/__init__.py -------------------------------------------------------------------------------- /conda_execute/tests/test_execute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-tools/conda-execute/HEAD/conda_execute/tests/test_execute.py -------------------------------------------------------------------------------- /conda_execute/tests/test_locked.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-tools/conda-execute/HEAD/conda_execute/tests/test_locked.py -------------------------------------------------------------------------------- /conda_execute/tests/test_tmpenv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-tools/conda-execute/HEAD/conda_execute/tests/test_tmpenv.py -------------------------------------------------------------------------------- /conda_execute/tmpenv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-tools/conda-execute/HEAD/conda_execute/tmpenv.py -------------------------------------------------------------------------------- /example.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-tools/conda-execute/HEAD/example.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-tools/conda-execute/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-tools/conda-execute/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-tools/conda-execute/HEAD/setup.py -------------------------------------------------------------------------------- /tests/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-tools/conda-execute/HEAD/tests/run_tests.sh -------------------------------------------------------------------------------- /versioneer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-tools/conda-execute/HEAD/versioneer.py --------------------------------------------------------------------------------