Topsis-Satyam-102303729 1.0.0__tar.gz → 1.0.1__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.
@@ -0,0 +1,92 @@
1
+ Metadata-Version: 2.4
2
+ Name: Topsis-Satyam-102303729
3
+ Version: 1.0.1
4
+ Summary: Implementation of TOPSIS (Technique for Order Preference by Similarity to Ideal Solution)
5
+ Home-page: https://github.com/sat-yam-12/TOPSIS-SATYAM-102303729
6
+ Author: Satyam Gupta
7
+ Author-email: sgupta5_be23@thapar.edu
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Operating System :: OS Independent
11
+ Requires-Python: >=3.8
12
+ Description-Content-Type: text/markdown
13
+ Requires-Dist: numpy
14
+ Requires-Dist: pandas
15
+ Dynamic: author
16
+ Dynamic: author-email
17
+ Dynamic: classifier
18
+ Dynamic: description
19
+ Dynamic: description-content-type
20
+ Dynamic: home-page
21
+ Dynamic: requires-dist
22
+ Dynamic: requires-python
23
+ Dynamic: summary
24
+
25
+ *TOPSIS* (Technique for Order Preference by Similarity to Ideal Solution) is a multi-criteria decision analysis method.
26
+
27
+ ## Installation
28
+
29
+ bash
30
+ pip install Topsis-Satyam-102303729
31
+
32
+
33
+ ## Usage
34
+
35
+ ### Command Line
36
+
37
+ bash
38
+ topsis <input_file> <weights> <impacts> <output_file>
39
+
40
+
41
+ ### Parameters
42
+
43
+ - *input_file*: Path to input CSV file
44
+ - *weights*: Comma-separated weights (e.g., "1,1,1,2")
45
+ - *impacts*: Comma-separated impacts, either + or - (e.g., "+,+,-,+")
46
+ - *output_file*: Path to output CSV file
47
+
48
+ ### Example
49
+
50
+ bash
51
+ topsis-satyam data.csv "1,1,1,1,1" "+,+,+,+,+" output.csv
52
+
53
+
54
+
55
+ ### Input File Format
56
+
57
+ The input CSV file should have:
58
+ - First column: Object/item names
59
+ - Remaining columns: Criteria values (numeric)
60
+
61
+ Example:
62
+
63
+ Model,Price,Storage,Camera,Looks
64
+ M1,250,16,12,5
65
+ M2,200,16,8,3
66
+ M3,300,32,16,4
67
+
68
+
69
+ ### Output
70
+
71
+ The output file will contain:
72
+ - All original columns
73
+ - *Topsis Score*: Calculated TOPSIS score
74
+ - *Rank*: Rank based on TOPSIS score
75
+
76
+ ## Requirements
77
+
78
+ - Python >= 3.8
79
+ - pandas >= 1.0.1
80
+ - numpy >= 1.18.0
81
+
82
+ ## License
83
+
84
+ MIT License
85
+
86
+ ## Author
87
+
88
+ Satyam Gupta
89
+
90
+ ## Links
91
+
92
+ -GitHub: https://github.com/sat-yam-12/TOPSIS-SATYAM-102303729
@@ -0,0 +1,92 @@
1
+ Metadata-Version: 2.4
2
+ Name: Topsis-Satyam-102303729
3
+ Version: 1.0.1
4
+ Summary: Implementation of TOPSIS (Technique for Order Preference by Similarity to Ideal Solution)
5
+ Home-page: https://github.com/sat-yam-12/TOPSIS-SATYAM-102303729
6
+ Author: Satyam Gupta
7
+ Author-email: sgupta5_be23@thapar.edu
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Operating System :: OS Independent
11
+ Requires-Python: >=3.8
12
+ Description-Content-Type: text/markdown
13
+ Requires-Dist: numpy
14
+ Requires-Dist: pandas
15
+ Dynamic: author
16
+ Dynamic: author-email
17
+ Dynamic: classifier
18
+ Dynamic: description
19
+ Dynamic: description-content-type
20
+ Dynamic: home-page
21
+ Dynamic: requires-dist
22
+ Dynamic: requires-python
23
+ Dynamic: summary
24
+
25
+ *TOPSIS* (Technique for Order Preference by Similarity to Ideal Solution) is a multi-criteria decision analysis method.
26
+
27
+ ## Installation
28
+
29
+ bash
30
+ pip install Topsis-Satyam-102303729
31
+
32
+
33
+ ## Usage
34
+
35
+ ### Command Line
36
+
37
+ bash
38
+ topsis <input_file> <weights> <impacts> <output_file>
39
+
40
+
41
+ ### Parameters
42
+
43
+ - *input_file*: Path to input CSV file
44
+ - *weights*: Comma-separated weights (e.g., "1,1,1,2")
45
+ - *impacts*: Comma-separated impacts, either + or - (e.g., "+,+,-,+")
46
+ - *output_file*: Path to output CSV file
47
+
48
+ ### Example
49
+
50
+ bash
51
+ topsis-satyam data.csv "1,1,1,1,1" "+,+,+,+,+" output.csv
52
+
53
+
54
+
55
+ ### Input File Format
56
+
57
+ The input CSV file should have:
58
+ - First column: Object/item names
59
+ - Remaining columns: Criteria values (numeric)
60
+
61
+ Example:
62
+
63
+ Model,Price,Storage,Camera,Looks
64
+ M1,250,16,12,5
65
+ M2,200,16,8,3
66
+ M3,300,32,16,4
67
+
68
+
69
+ ### Output
70
+
71
+ The output file will contain:
72
+ - All original columns
73
+ - *Topsis Score*: Calculated TOPSIS score
74
+ - *Rank*: Rank based on TOPSIS score
75
+
76
+ ## Requirements
77
+
78
+ - Python >= 3.8
79
+ - pandas >= 1.0.1
80
+ - numpy >= 1.18.0
81
+
82
+ ## License
83
+
84
+ MIT License
85
+
86
+ ## Author
87
+
88
+ Satyam Gupta
89
+
90
+ ## Links
91
+
92
+ -GitHub: https://github.com/sat-yam-12/TOPSIS-SATYAM-102303729
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name="Topsis-Satyam-102303729",
5
- version="1.0.0",
5
+ version="1.0.1",
6
6
  author="Satyam Gupta",
7
7
  author_email="sgupta5_be23@thapar.edu",
8
8
  description="Implementation of TOPSIS (Technique for Order Preference by Similarity to Ideal Solution)",
@@ -1,32 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: Topsis-Satyam-102303729
3
- Version: 1.0.0
4
- Summary: Implementation of TOPSIS (Technique for Order Preference by Similarity to Ideal Solution)
5
- Home-page: https://github.com/sat-yam-12/TOPSIS-SATYAM-102303729
6
- Author: Satyam Gupta
7
- Author-email: sgupta5_be23@thapar.edu
8
- Classifier: Programming Language :: Python :: 3
9
- Classifier: License :: OSI Approved :: MIT License
10
- Classifier: Operating System :: OS Independent
11
- Requires-Python: >=3.8
12
- Description-Content-Type: text/markdown
13
- Requires-Dist: numpy
14
- Requires-Dist: pandas
15
- Dynamic: author
16
- Dynamic: author-email
17
- Dynamic: classifier
18
- Dynamic: description
19
- Dynamic: description-content-type
20
- Dynamic: home-page
21
- Dynamic: requires-dist
22
- Dynamic: requires-python
23
- Dynamic: summary
24
-
25
- # Topsis-Satyam-102303729
26
-
27
- This is a Python package implementing the **TOPSIS** method
28
- (Technique for Order Preference by Similarity to Ideal Solution).
29
-
30
- ## Installation
31
- ```bash
32
- pip install topsis-satyam-102303729
@@ -1,32 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: Topsis-Satyam-102303729
3
- Version: 1.0.0
4
- Summary: Implementation of TOPSIS (Technique for Order Preference by Similarity to Ideal Solution)
5
- Home-page: https://github.com/sat-yam-12/TOPSIS-SATYAM-102303729
6
- Author: Satyam Gupta
7
- Author-email: sgupta5_be23@thapar.edu
8
- Classifier: Programming Language :: Python :: 3
9
- Classifier: License :: OSI Approved :: MIT License
10
- Classifier: Operating System :: OS Independent
11
- Requires-Python: >=3.8
12
- Description-Content-Type: text/markdown
13
- Requires-Dist: numpy
14
- Requires-Dist: pandas
15
- Dynamic: author
16
- Dynamic: author-email
17
- Dynamic: classifier
18
- Dynamic: description
19
- Dynamic: description-content-type
20
- Dynamic: home-page
21
- Dynamic: requires-dist
22
- Dynamic: requires-python
23
- Dynamic: summary
24
-
25
- # Topsis-Satyam-102303729
26
-
27
- This is a Python package implementing the **TOPSIS** method
28
- (Technique for Order Preference by Similarity to Ideal Solution).
29
-
30
- ## Installation
31
- ```bash
32
- pip install topsis-satyam-102303729