Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 322 Bytes

REMINDERS.md

File metadata and controls

18 lines (13 loc) · 322 Bytes

Local development

Python can help you. Don't reinstall all the time, rather use a virtulenv that has a link to the code.

python setup.py develop

Pushing New Version to PyPi

From the root folder, run:

rm -rf dist
python setup.py sdist
python setup.py bdist_wheel --universal
twine upload dist/*