Homepage: http://OpenHuman.ai/
Github: https://github.com/OpenHuman-ai/python-openhuman
Orgs: https://github.com/OpenHuman-ai
-
Create a setup.py file for your package, which includes information about your package such as its name, version, author, and dependencies.
-
Create a source distribution and a wheel distribution of your package by running the following commands in your terminal:
python3 setup.py sdist bdist_wheel
-
Create an account on PyPI if you haven't already done so. You can create an account by going to https://pypi.org/account/register/ and filling out the form.
-
Install the twine package, which is used to upload your package to PyPI:
pip install twine
- Upload your package to PyPI using twine:
Remove old version before upload new
rm dist/*
twine upload dist/*
- Your package is now published on PyPI! Users can install it using pip install mypackage.