I have made an Open Source AI Coding Assistant in python: https://github.com/00-Python/AI-Debug
I am new to making PyPi Packages to be able to install my project with pip.
Im not sure where to start, can somebody point me in the right direction?
python.org has exactly the documentation you're looking for: https://packaging.python.org/en/latest/tutorials/packaging-projects/
In sum, you'll go through roughly the following steps:
src
dir for the code you want in the package (leaving out extra files not needed in an install, e.g. automated tests)pyproject.toml
file that defines metadata and build system info for your packagetwine
to upload the package to pypi (you'll need to create a pypi account if you haven't already)