Command Line Usage¶
mkrecipe¶
Make a conda recipe for the given project.
mkrecipe [OPTIONS] [PROJECT]
Options
-
-o,--outfile<outfile>¶ The output file.
- Default
conda/meta.yaml
-
-t,--type<artifact_type>¶ The type of release artifact to build the conda package from.
- Default
sdist
- Options
sdist | wheel
-
-T,--traceback¶ Show the complete traceback on error.
-
--version¶ Show the version and exit.
Arguments
-
PROJECT¶ The project to create the recipe for.
Optional argument. Default
'.'
Changed in version 0.3.0: Added the -t / --type option which allows building conda packages from wheels rather than sdists. This is useful to avoid circular dependencies when the project is a dependency of the build tool.