xxxxxxxxxx
pip install wheel
pip install twine
https://pypi.org/ # Create Account
python .\setup.py sdist bdist_wheel
twine upload .\dist\*
Enter You Token
image.mefiz.com
xxxxxxxxxx
py sdist bdist_wheel
This will package the files in a machine readable format.
xxxxxxxxxx
twine upload dist/*
Finally this uploads our package to PyPi
If you get an error like this `Package Not Found` do this command
xxxxxxxxxx
pip install wheel
and
xxxxxxxxxx
pip install twine