Metadata-Version: 2.1
Name: topsispack-NG
Version: 0.0.5
Summary: Multiple Criteria Decision Making(MCDM) using TOPSIS
Home-page: https://github.com/CachingNik/niklib
Author: Nikhil Gupta
Author-email: ngupta_be17@thapar.edu
License: UNKNOWN
Description: # A library capable of implementing TOPSIS
        
        ```
        PROJECT 1, UCS633 - Data Analysis and Visualization
        Nikhil Gupta  
        COE17
        Roll number: 101703371
        ```
        Output is the best allternative out of list of all allternatives. Other ranks are streamed to the csv file.
        
        `Best Attribute: Mobile 3`
        
        ## Installation
        `pip install topsispack_NG`
        
        *Note the name has an underscore not a hyphen. If installation gives error or package is not found after installing, install as sudo.*
        
        *Recommended - test it out in a virtual environment.* 
        
        ## To use via command line
        `topcli myData.csv "1,1,1,1" "-,+,+,+"`
        
        First argument after nikcli is the location of the .csv file. The weights and impacts should be passed as strings in double quotes with each weight or impact separated by a comma (',').
        
        ## To use in .py script
        ```
        from toplib.model import topsis
        topsis(['myData.csv',"1,1,1,1","-,+,+,+"])
        ```
        
        The argument passed should be a list.
        
        *Can email me for any issues or suggestions*
        
Keywords: CLI,TOPSIS,Data
Platform: UNKNOWN
Requires-Python: >=2.7
Description-Content-Type: text/markdown
