Release procedure for PyCIFRW
=============================

After code changes are complete:
1. Edit all relevant text files in top-level directory
   - in particular setup.py for version number.
2. Build source release:
    python setup.py sdist 
3. Build binary wheel release for Linux:
    python setup.py bdist_wheel
4. Audit wheel for manylinux1 conformance:
    python3 check_manylinux_package.py show <generated_wheel>
    (uses auditwheel package from pip)
5. For each of Python 2,3 and source,wheel conduct testing
   procedure outlined in TESTING file.
6. When testing is complete, assign a git tag (remember to
   push the tag to the repo with git push origin <tag>)

