conda metapackageΒΆ
CONDA(1) User Commands CONDA(1)
NAME
conda - conda metapackage
DESCRIPTION
usage: conda-metapackage [-h] [--no-anaconda-upload] [--token TOKEN] [--user USER] [--build-number BUILD_NUMBER] [--build-string BUILD_STRING] [--dependencies [DEPENDENCIES [DEPENDENCIES ...]]] [--home HOME] [--license LICENSE] [--sum- mary SUMMARY] [--entry-points [ENTRY_POINTS [ENTRY_POINTS ...]]] name version Tool for building conda metapackages. A metapackage is a package with no files, only metadata. They are typically used to collect several packages together into a single package via dependencies. NOTE: Metapackages can also be created by creating a recipe with the necessary metadata in the meta.yaml, but a metapackage can be created entirely from the command line with the conda metapackage command.
OPTIONS
positional arguments: name Name of the created package. version Version of the created package. optional arguments: -h, --help Show this help message and exit. --no-anaconda-upload Do not ask to upload the package to anaconda.org. --token TOKEN Token to pass through to anaconda upload --user USER User/organization to upload packages to on anaconda.org --build-number BUILD_NUMBER Build number for the package (default is 0). --build-string BUILD_STRING Build string for the package (default is automatically gener- ated). --dependencies [DEPENDENCIES [DEPENDENCIES ...]], -d [DEPENDENCIES [DEPENDENCIES ...]] The dependencies of the package. To specify a version restric- tion for a dependency, wrap the dependency in quotes, like 'package >=2.0'. --home HOME The homepage for the metapackage. --license LICENSE The license of the metapackage. --summary SUMMARY Summary of the package. Pass this in as a string on the command line, like --summary 'A metapackage for X'. It is recommended to use single quotes if you are not doing variable substitution to avoid interpretation of special characters. --entry-points [ENTRY_POINTS [ENTRY_POINTS ...]] Python entry points to create automatically. They should use the same syntax as in the meta.yaml of a recipe, e.g., --entry-points bsdiff4=bsdiff4.cli:main_bsdiff4 will create an entry point called bsdiff4 that calls bsdiff4.cli.main_bsd- iff4(). Continuum Analytics August 2017 CONDA(1)