Metadata-Version: 2.1
Name: interspace
Version: 0.0.5
Summary: Interspace gives us different type distances between two vectors.
Home-page: https://github.com/rehanguha/interspace
Author: Rehan Guha
Author-email: rehanguha29@gmail.com
License: UNKNOWN
Description: # Interspace
        Gives us different distance between two vectors which are given in as an input.
        
        ## Installation
        
        ```bash
        pip install interspace
        ```
        
        ## Usage
        
        ```python
        import interspace
        
        # Calculate Euclidean Distace
        interspace.euclidean([1,2,3],[4,5,6])
        ##Output: 5.196152422706632
        
        # Calculate all possible Distances
        interspace.distance([1,2,3],[7,8,9])
        ##Output: {'Euclidean': 10.392304845413264}
        ```
        
        
Platform: UNKNOWN
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Natural Language :: English
Classifier: Programming Language :: Python
Classifier: Topic :: Scientific/Engineering
Requires-Python: >=2.7
Description-Content-Type: text/markdown
