Metadata-Version: 2.1
Name: dtscalibration
Version: 0.5.0
Summary: A Python package to load raw DTS files, perform a calibration, and plot the result
Home-page: https://github.com/bdestombe/python-dts-calibration
Author: Bas des Tombe
Author-email: bdestombe@gmail.com
License: BSD 3-Clause License
Keywords: DTS,Calibration
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: Unix
Classifier: Operating System :: POSIX
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Utilities
Requires-Python: >= 3.6
Requires-Dist: numpy
Requires-Dist: xarray
Requires-Dist: pyyaml
Requires-Dist: xmltodict
Requires-Dist: scipy
Requires-Dist: statsmodels
Requires-Dist: nbsphinx
Requires-Dist: dask
Requires-Dist: toolz
Requires-Dist: matplotlib
Requires-Dist: netCDF4

========
Overview
========



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::

    tox
    git status  # to make sure no unversioned modifications are in the repository
    git add --all
    bumpversion patch
    rm -rf build
    rm -rf src/*.egg-info
    rm -rf dist/*
    tox
    python setup.py clean --all sdist bdist_wheel
    twine upload --repository-url https://upload.pypi.org/legacy/ dist/dtscalibration*


Changelog
=========

0.4.0 (2018-09-06)
------------------

* Single ended calibration
* Confidence intervals for single ended calibration
* Example notebooks have figures embedded
* Several bugs squashed
* Reorganized DataStore functions


0.2.0 (2018-08-16)
------------------

* Double ended calibration
* Confidence intervals for double ended calibration


0.1.0 (2018-08-01)
------------------

* First release on PyPI.


