Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Publish wheels to pypi #6

Open
cancan101 opened this issue Mar 28, 2018 · 2 comments
Open

Publish wheels to pypi #6

cancan101 opened this issue Mar 28, 2018 · 2 comments

Comments

@cancan101
Copy link

No description provided.

@ThomasA
Copy link
Collaborator

ThomasA commented Jul 3, 2018

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.

@Aikhjarto
Copy link

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/*

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants