packing_packages package
Packing Packages
Packing packages for distribution and installation. This module provides functionality to pack conda environments and their dependencies into a specified directory.
$ python -m packing_packages pack --help
$ python -m packing_packages install --help
or
$ packing-packages pack --help
$ packing-packages install --help
Subpackages
Submodules
packing_packages.constants module
This module contains constants used throughout the packing_packages package.
It includes constants for file extensions, encoding, and other configuration values.
- packing_packages.constants.EXTENSIONS_CONDA: tuple[Literal['tar.bz2'], Literal['conda']] = ('tar.bz2', 'conda')
Extensions for conda packages.
These are the extensions used by conda packages.
- packing_packages.constants.EXTENSIONS_PYPI: tuple[Literal['whl'], Literal['tar.gz']] = ('whl', 'tar.gz')
Extensions for PyPI packages.
These are the extensions used by PyPI packages.