Metadata-Version: 1.1
Name: geotechnicalprofile
Version: 0.3.0
Summary: Load, manage, and plot geotechnical data, including GEF and DTS measurements
Home-page: https://github.com/bdestombe/python-geotechnical-profile
Author: Bas des Tombe
Author-email: bdestombe@gmail.com
License: BSD 3-Clause License
Description: ========
        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 geotechnicalprofile
        
        Current version on pip is vv0.3.0. . This is probably several commits behind this repository. Pip
        install directly from github to obtain the most recent changes.
        
        Learn by examples
        =================
        Interactively run the example notebooks online by clicking the launch-binder button.
        
        Documentation
        =============
        
        https://python-geotechnical-profile.readthedocs.io/
        
        Development
        ===========
        
        To run the all tests run:
        
        .. code-block:: zsh
        
            tox
        
        
        To bump version and docs:
        
        .. code-block:: zsh
        
            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/geotechnicalprofile*
        
        
        Changelog
        =========
        
        0.1.0 (2018-10-03)
        ------------------
        
        * First release on PyPI.
        
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 :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Utilities
