Metadata-Version: 2.4
Name: Topsis-Sahil-102316091
Version: 1.0.0
Summary: A Python package for TOPSIS (Technique for Order of Preference by Similarity to Ideal Solution)
Home-page: https://github.com/sahil/topsis
Author: Sahil Kumar
Author-email: sahil@example.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
Requires-Dist: pandas
Requires-Dist: numpy
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# Topsis-Sahil-102316091

A Python package to implement TOPSIS (Technique for Order of Preference by Similarity to Ideal Solution).

## Installation

```bash
pip install Topsis-Sahil-102316091
```

## Usage

### Command Line

```bash
topsis <InputDataFile> <Weights> <Impacts> <OutputResultFileName>
```

Example:

```bash
topsis data.csv "1,1,1,1,1" "+,+,+,+,+" result.csv
```

### Python Script

```python
from topsis.main import topsis_logic
import pandas as pd

# Load your dataframe
df = pd.read_csv("data.csv")

# processing...
# ...
```

## License

MIT
