I used cookiecutter to create a simple python package that I pushed to Pypi. Next I want to get the package into the Conda ecosystem and found the conda-forge channel really powerful. My only problem is that publishing to conda-forge requires a couple of manual steps including rewriting part of a meta.yaml file. Is there a better way to do this?
My current approach:
- Create Conda Recipe (meta.yaml) using Conda Skeleton
- Fork Conda Forge Staged Recipes
- Manually edit some lines in the meta.yaml since conda skeleton recipe is slightly different than what is accepted by conda-forge.
- Create a Pull Request for conda forge staged recipes.
Ideally I would like to sync pypi with conda-forge without any manual steps. This is probably not possible but suggestions are very welcome.