albertyw/albertyw.com

View on GitHub
app/notes/20170425-0630.md

Summary

Maintainability
Test Coverage
Creating a New PyPI Release

creating-a-new-pypi-release

1493101827

As a reminder to myself for the magic incantations for uploading a repository
to PyPI:

```bash
pip install twine
python setup.py sdist bdist_wheel
twine upload dist/*
```