For the most up to date instructions on creating python packages go here
Pyglidein uses source control version management. When the python package is being built the git tag on the commit is used for versioning. Pyglidein uses a Simple "major.minor.micro" versioning scheme:
1.1.0 1.1.1 1.1.2 1.2.0 ...
To create a source distribution in dest/*
:
python setup.py sdist
To create a binary distribution in dest/*
:
python setup.py bdist
twine upload dist/*