pypi に自作ライブラリを登録する手順(2021版)
pypiとは?
Python Package Indexの略とのこと。
pip install ライブラリ名で簡単にライブラリがインストールされます。
ざっくりと説明。
####①pypiでユーザー登録。
####②Gitにリモートリポジトリにpush。
####③パッケージをビルドする。
####④パッケージをアップロードする。
これだけです。
pip install twine
python setup.py sdist
python setup.py bdist_wheel
git add .
git commint -m ''
git push origin main
twine upload -u pipyのユーザーID -p pipyのユーザーPW --repository-url https://upload.pypi.org/legacy/ dist/*
ソース元
Python: Twine を使って PyPI にパッケージをアップロードする - CUBE SUGAR CONTAINER
【Python】PyPIエラー対応 Invalid or non-existent authentication informationの対処法 - Qiita