Metadata-Version: 2.4
Name: Topsis-Prabhsimrat-102317135
Version: 1.0.0
Summary: A Python implementation of TOPSIS method using command line arguments
Author: Prabhsimrat Singh
Author-email: prabhsimrat28112005@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: numpy
Requires-Dist: pandas
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# TOPSIS – Technique for Order Preference by Similarity to Ideal Solution

TOPSIS is a Multi-Criteria Decision Making (MCDM) method developed in the 1980s.  
It selects the best alternative based on:

- Shortest Euclidean distance from the Ideal Solution
- Farthest distance from the Negative-Ideal Solution

---

## Installation

Install directly from PyPI:

## Usage

After installation, open your terminal and run:
topsis <InputDataFile> <Weights> <Impacts> <OutputFile>


### Example:

topsis test.csv "1,1,2,3,1" "+,-,+,-,-" output.csv

## Output

The output file will contain:

- Original data
- Topsis Score
- Rank (1 = Best Alternative)

---
