Topsis-Pulkit-102303800 1.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- topsis_pulkit_102303800-1.0.0/LICENSE +4 -0
- topsis_pulkit_102303800-1.0.0/PKG-INFO +15 -0
- topsis_pulkit_102303800-1.0.0/README.md +17 -0
- topsis_pulkit_102303800-1.0.0/Topsis_Pulkit_102303800.egg-info/PKG-INFO +15 -0
- topsis_pulkit_102303800-1.0.0/Topsis_Pulkit_102303800.egg-info/SOURCES.txt +9 -0
- topsis_pulkit_102303800-1.0.0/Topsis_Pulkit_102303800.egg-info/dependency_links.txt +1 -0
- topsis_pulkit_102303800-1.0.0/Topsis_Pulkit_102303800.egg-info/entry_points.txt +2 -0
- topsis_pulkit_102303800-1.0.0/Topsis_Pulkit_102303800.egg-info/requires.txt +3 -0
- topsis_pulkit_102303800-1.0.0/Topsis_Pulkit_102303800.egg-info/top_level.txt +1 -0
- topsis_pulkit_102303800-1.0.0/setup.cfg +4 -0
- topsis_pulkit_102303800-1.0.0/setup.py +16 -0
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: Topsis-Pulkit-102303800
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: CLI-based TOPSIS implementation
|
|
5
|
+
Author: Pulkit Goyal
|
|
6
|
+
Requires-Python: >=3.6
|
|
7
|
+
License-File: LICENSE
|
|
8
|
+
Requires-Dist: pandas
|
|
9
|
+
Requires-Dist: numpy
|
|
10
|
+
Requires-Dist: openpyxl
|
|
11
|
+
Dynamic: author
|
|
12
|
+
Dynamic: license-file
|
|
13
|
+
Dynamic: requires-dist
|
|
14
|
+
Dynamic: requires-python
|
|
15
|
+
Dynamic: summary
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# Topsis-Pulkit-102303800
|
|
2
|
+
|
|
3
|
+
A Python CLI tool implementing the TOPSIS method.
|
|
4
|
+
|
|
5
|
+
## Usage
|
|
6
|
+
|
|
7
|
+
topsis <inputfile> <weights> <impacts> <outputfile>
|
|
8
|
+
|
|
9
|
+
Example:
|
|
10
|
+
|
|
11
|
+
topsis data.csv "1,1,1,2" "+,+,-,+" result.csv
|
|
12
|
+
|
|
13
|
+
## Input Rules
|
|
14
|
+
- File must be .csv or .xlsx
|
|
15
|
+
- Minimum 3 columns
|
|
16
|
+
- First column is label
|
|
17
|
+
- Remaining columns numeric
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: Topsis-Pulkit-102303800
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: CLI-based TOPSIS implementation
|
|
5
|
+
Author: Pulkit Goyal
|
|
6
|
+
Requires-Python: >=3.6
|
|
7
|
+
License-File: LICENSE
|
|
8
|
+
Requires-Dist: pandas
|
|
9
|
+
Requires-Dist: numpy
|
|
10
|
+
Requires-Dist: openpyxl
|
|
11
|
+
Dynamic: author
|
|
12
|
+
Dynamic: license-file
|
|
13
|
+
Dynamic: requires-dist
|
|
14
|
+
Dynamic: requires-python
|
|
15
|
+
Dynamic: summary
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
LICENSE
|
|
2
|
+
README.md
|
|
3
|
+
setup.py
|
|
4
|
+
Topsis_Pulkit_102303800.egg-info/PKG-INFO
|
|
5
|
+
Topsis_Pulkit_102303800.egg-info/SOURCES.txt
|
|
6
|
+
Topsis_Pulkit_102303800.egg-info/dependency_links.txt
|
|
7
|
+
Topsis_Pulkit_102303800.egg-info/entry_points.txt
|
|
8
|
+
Topsis_Pulkit_102303800.egg-info/requires.txt
|
|
9
|
+
Topsis_Pulkit_102303800.egg-info/top_level.txt
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
from setuptools import setup, find_packages
|
|
2
|
+
|
|
3
|
+
setup(
|
|
4
|
+
name="Topsis-Pulkit-102303800",
|
|
5
|
+
version="1.0.0",
|
|
6
|
+
author="Pulkit Goyal",
|
|
7
|
+
description="CLI-based TOPSIS implementation",
|
|
8
|
+
packages=find_packages(),
|
|
9
|
+
install_requires=["pandas", "numpy", "openpyxl"],
|
|
10
|
+
entry_points={
|
|
11
|
+
'console_scripts': [
|
|
12
|
+
'topsis=topsis_pulkit_102303800.topsis:main',
|
|
13
|
+
],
|
|
14
|
+
},
|
|
15
|
+
python_requires='>=3.6',
|
|
16
|
+
)
|