Open cancan101 opened 6 years ago
With twine
, publishing to pypi is easy. Just make a tag "v0.1" (character "v" followed by version number) and use twine to publish to pypi.
git tag v$(VERSION)
git push --tags
rm -f dist/*
python3 setup.py sdist
python3 setup.py bdist_wheel
twine upload dist/*
I am helping maintain this package, but I am afraid I have absolutely no experience publishing packages to PyPI. If anyone is willing to help out, that would be great.