Metadata-Version: 2.1
Name: TOPSIS-102103268
Version: 0.0.1
Summary: A Python package to find TOPSIS for multi-criteria decision analysis method
Author: Jeetesh Rajpal
Author-email: jiteshrajal2003@gmail.com
License: MIT
Keywords: topsis,MCDM,TIET
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Operating System :: Microsoft :: Windows :: Windows 10
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Requires-Dist: pandas
Requires-Dist: tabulate

Topsis (MCDM)

CalcTopsis is a Python package implementing Topsis method sed for multi-criteria decision analysis.
Topsis stands for Technique for Order of Preference by Similarity to Ideal Solution

Just provide your input attributes and it will give you the results


## Installation

$ pip install TOPSIS-102103268 == 0.0.1
In the commandline, you can write as -
    $ python <package_name> <path to input_data_file_name> <weights as strings> <impacts as strings> <result_file_name>

E.g for input data file as data.csv, command will be like
    $ python topsis.py data.csv "1,1,1,1" "+,+,-,+" output.csv

This will print all the output attribute values along with the Rank column, in a tabular format

License -> MIT

Change Log
==========

0.0.1 (12/11/2020)
------------------
- First Release
