Metadata-Version: 2.1
Name: Topsis-Samkit-102203285
Version: 1.0.0
Summary: A Python package for performing TOPSIS analysis.
Home-page: https://github.com/gatopotato/Topsis-Samkit-102203285
Author: Samkit Jaina
Author-email: samkitjaina.ind@gmail.com
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: pandas
Requires-Dist: numpy
Requires-Dist: openpyxl

# TOPSIS Python Package

This package implements the TOPSIS (Technique for Order of Preference by Similarity to Ideal Solution) method for multi-criteria decision-making.

## Installation

Install the package using pip:

```
pip install Topsis-Samkit-102203285
```

## Usage

Run the following command after importing the package:

```python
from topsis import Topsis

Topsis.calculate('input_file.csv', '1,1,1,2', '+,+,-,+', 'output_file.csv')
```
