Your contributions and hints are welcome!
Please open an issue if you want to discuss problems or discuss improvements.
You code contributions are welcome, too. Pull requests via github are the preferred approach for these. Please take a look at the github documentation if you are new to this platform.
- update
__version__
injcamp.py
- update
__version__
in__init__.py
- update
version
insetup.py
- create a release commit:
git commit -m "Release v0.1.2" jcamp.py setup.py
- attach a tag to the release commit:
git tag v0.1.2
- push the commit and its tag:
git push --follow-tags
In order to publish this as a package update to PyPi,
- First test that things are working:
pip install .
- Create a new source distribution:
python3 setup.py sdist
- Upload to the PyPi package index:
twine upload dist/*