/python-dts-calibration

A Python package to load raw DTS files, perform a calibration, and plot the result

Primary LanguagePythonBSD 3-Clause "New" or "Revised" LicenseBSD-3-Clause

Overview

docs Documentation Status
tests
Travis-CI Build Status
Coverage Status
package
citable It would be greatly appreciated if you could cite this package in eg articles presentations
Example notebooks Interactively run the example notebooks online

A Python package to load raw DTS files, perform a calibration, and plot the result

  • Free software: BSD 3-Clause License

Installation

pip install dtscalibration

Learn by examples

Interactively run the example notebooks online by clicking the launch-binder button.

Documentation

https://python-dts-calibration.readthedocs.io/

Development

To run the all tests run:

tox

To bump version and docs:

git status          # to make sure no unversioned modifications are in the repository
tox                 # Performes tests and creates documentation and runs notebooks
git status          # Only notebook related files should be shown
git add --all       # Add all notebook related files to local version
git commit -m "Updated notebook examples to reflect recent changes"
bumpversion patch   # (major, minor, patch)
git push
rm -rf build        # Clean local folders (not synced) used for pip wheel
rm -rf src/*.egg-info
rm -rf dist/*
python setup.py clean --all sdist bdist_wheel
twine upload --repository-url https://upload.pypi.org/legacy/ dist/dtscalibration*