conda-skeleton
wouldn't it be better if we import these as functions from skeleton and then run it to remove the extra step of going through shellThe basic workflow of pipbuild
is:
pip
Step 1. is completed in two ways:
conda-skeleton
, convert the recipe to keep only the necessary information, replace $PYTHON setup.py install
with pip install <package_name>
, get a list of dependencies from meta data.pkg_resources
module, get other information about the package from PyPI's xmlrpc interface.pipbuild
essentially uses conda-skeleton
to get the dependencies it is likely that I'll be able to factor out that part of skeleton
and call that function in pipbuild