dfm / python-nufft

Python bindings to a subset of the NUFFT algorithm
Other
61 stars 13 forks source link

Publish wheels to pypi #6

Open cancan101 opened 6 years ago

ThomasA commented 6 years ago

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