Metadata-Version: 2.1
Name: Topsis-HarshPaba-102003675
Version: 0.0.1
Summary: A python package to implement topsis
Author: Harsh Paba
License: UNKNOWN
Keywords: topsis,maths,multiple criteria decision making
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy
Requires-Dist: pandas
Requires-Dist: sys

# Topsis implemented by Harsh Paba

[![forthebadge made-with-python](http://ForTheBadge.com/images/badges/made-with-python.svg)](https://www.python.org/)                 
[![Python 3.6](https://img.shields.io/badge/python-3.6-blue.svg)](https://www.python.org/downloads/release/python-360/)   

## Functionality of the package

- Outputs the performance score and rank corresponding to each row of the dataset.

## Usage

- Make sure you have Python installed in your system.
- Run the following command in terminal.
 ```
  pip install Topsis_HarshPaba_102003675
  ```
## Example
  ```
  from Topsis_HarshPaba_102003675 import find_rank
  ip=sys.argv[1]
  wt=sys.argv[2]
  im=sys.argv[3]
  op=sys.argv[4]
  find_rank(ip,wt,im,op)
  ```

## Run the following Script.
 ```
  python test.py <inputFile.csv> weights impacts <outputFile.csv>



