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

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

