Metadata-Version: 1.0
Name: tvb-gdist
Version: 2.0.1
Summary: Compute geodesic distances
Home-page: https://github.com/the-virtual-brain/tvb-geodesic
Author: Danil Kirsanov, Gaurav Malhotra and Stuart Knock
Author-email: tvb.admin@thevirtualbrain.org
License: GPL v3
Description: Geodesic Library 
        =================
        
        The **tvb-gdist** module is a Cython interface to a C++ library
        (https://code.google.com/archive/p/geodesic/) for computing
        geodesic distance which is the length of shortest line between two
        vertices on a triangulated mesh in three dimensions, such that the line
        lies on the surface.
        
        The algorithm is due Mitchell, Mount and Papadimitriou, 1987; the implementation
        is due to Danil Kirsanov and the Cython interface to Gaurav Malhotra and
        Stuart Knock (TVB Team).
        
        
        Original library (published under MIT license):
        https://code.google.com/archive/p/geodesic/
        
        We added a Python wrapped and made small fixes to the original library, to make it compatible with Cython.
        
        To install this, either run **pip install tvb-gdist** or download
        sources from Github and run **python setup.py install** in current folder.
        https://github.com/the-virtual-brain/tvb-geodesic
        
        Basic test could be::
        
            python
            import gdist
        
        
        Python 3, Cython, and a C++ compiler are required unless the Pypi whl files are compatible with your system.
        
        Debian package
        --------------
        
        In order to produce a Debian package, assuming you have the requisite tools
        installed (`apt-get install devscripts python-all-dev python-stdeb`)::
        
            cd debian
            debuild -us -uc
            cd ../../
        
        
        and you should find a suitable deb file for your system.
        
        Current Build Status
        =====================
        .. image:: https://travis-ci.com/the-virtual-brain/tvb-geodesic.svg?branch=trunk
            :target: https://travis-ci.com/the-virtual-brain/tvb-geodesic
        
Keywords: gdist geodesic distance geo tvb
Platform: UNKNOWN
