/python-conda-bundler

Provides bdist_conda command to bundle package into an autonomous conda bundle

Primary LanguagePython

Build Status Coverage Status Dependency Status

#Python-conda-bundler

This package installs a distutils command that bundle python package into a self contained conda bundle.

bdist_conda options:

  • --conda-packages=: a list of conda package specification to install in env
  • --conda-url=: Miniconda shell scritp distribution URL
  • --conda-install-path=: conda install path if --conda-url= is specified
  • --bundle-build-dir=: bundle build directory

Note that options can also be specified in setup.cfg file:

[bdist_conda]
conda-packages=foo,bar,bazz
conda-url=file:///also/support/for/file/urls.sh
cona-instal-path=/tmp/conda-install-path
bundle-build-dir=/tmp/bundle_build_dir

Testing

Install tox and run:

  $ tox