0

I had created a python package Categorize-CLI and had uploaded it to pypi, the source code of the project is available in Github, is it possible to upload this project to multiple package management systems like Homebrew and Conda from a single repo or will there be any conflicts? Or will I have to create separate repositories for each package manager?

Thank you!

Rohith Nambiar
  • 2,957
  • 4
  • 17
  • 37
  • 1
    Does one consider the "feedstock" that Conda Forge creates a separate repository? One doesn't create this directly, but instead submits a recipe to [the `staged-recipes` repository](https://github.com/conda-forge/staged-recipes), and it generates everything after merging. It mostly maintains itself, automatically detecting PyPI releases and generating Conda builds. https://conda-forge.org/docs/maintainer/adding_pkgs.html#contributing-packages – merv Apr 21 '22 at 17:16

1 Answers1

1

is it possible to upload this project to multiple package management systems like Homebrew and Conda from a single repo or will there be any conflicts.

Not sure about Conda, but for Homebrew, it is totally possible and there are some github actions can help with the release process:

chenrui
  • 8,910
  • 3
  • 33
  • 43