Conda & Anaconda

conda_channels

A list of Anaconda channels required to build and use the Conda package.

Example:

conda_channels:
  - domdfcoding
  - conda-forge
  - bioconda

Required: no

Default: [ ]

Type: Sequence of String

conda_extras

A list of extras (see extras_require) to include as requirements in the Conda package.

The special keyword all indicates all extras should be included.
The special keyword none indicates no extras should be included.

Example:

conda_extras:
  - plotting
  - xml

New in version 2020.11.12.

Required: no

Default: [‘all’]

Type: Sequence of String

conda_description

A short description of the project for Anaconda.

Example:

conda_description: This is a short description of my project.

A list of required Anaconda channels is automatically appended.

Required: no

Default: The value of short_desc

Type: String

enable_conda

Whether conda packages should be built and deployed.

Example:

enable_conda: True

Required: no

Default: True

Type: Boolean