DiaModality 0.2.1__tar.gz → 0.2.3__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: DiaModality
3
- Version: 0.2.1
3
+ Version: 0.2.3
4
4
  Summary: Tool to plot modality vector diagrams
5
5
  Author-email: konung-yaropolk <yaropolk1995@gmail.com>
6
6
  License: MIT License
@@ -25,6 +25,7 @@ License: MIT License
25
25
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26
26
  SOFTWARE.
27
27
  Project-URL: Homepage, https://github.com/konung-yaropolk/DiaModality
28
+ Project-URL: Repository, https://github.com/konung-yaropolk/DiaModality.git
28
29
  Project-URL: Issues, https://github.com/konung-yaropolk/DiaModality/issues
29
30
  Keywords: Visualization,Science,Plotting,Matplotlib
30
31
  Classifier: Programming Language :: Python
@@ -41,7 +42,7 @@ Description-Content-Type: text/markdown
41
42
  License-File: LICENSE
42
43
  Requires-Dist: numpy
43
44
  Requires-Dist: matplotlib
44
- Requires-Dist: scsv
45
+ Requires-Dist: scsv>=0.1.4
45
46
 
46
47
  # DiaModality - The Modality Diagram
47
48
 
@@ -123,7 +124,7 @@ for file in files:
123
124
 
124
125
  # Parse data from csv file
125
126
  new_csv = csv.OpenFile(file_path)
126
- data, binarization = new_csv.ParseCsv(3, 3)
127
+ data, binarization = new_csv.GetRows(3, 3)
127
128
 
128
129
  # Make figure:
129
130
  plot = plt.ModalityPlot(
@@ -144,7 +145,7 @@ for file in files:
144
145
  # else draw trimodal vectors only
145
146
  whole_sum=True, # Calculate all three modality vectors despite binarization
146
147
  figsize=(10, 10),
147
- dpi=200,
148
+ dpi=100,
148
149
  title='Modality Diagram Example',
149
150
  colors=(
150
151
  'tab:green', # Set 1 color
@@ -78,7 +78,7 @@ for file in files:
78
78
 
79
79
  # Parse data from csv file
80
80
  new_csv = csv.OpenFile(file_path)
81
- data, binarization = new_csv.ParseCsv(3, 3)
81
+ data, binarization = new_csv.GetRows(3, 3)
82
82
 
83
83
  # Make figure:
84
84
  plot = plt.ModalityPlot(
@@ -99,7 +99,7 @@ for file in files:
99
99
  # else draw trimodal vectors only
100
100
  whole_sum=True, # Calculate all three modality vectors despite binarization
101
101
  figsize=(10, 10),
102
- dpi=200,
102
+ dpi=100,
103
103
  title='Modality Diagram Example',
104
104
  colors=(
105
105
  'tab:green', # Set 1 color
@@ -27,11 +27,12 @@ classifiers = [
27
27
  dependencies = [
28
28
  "numpy",
29
29
  "matplotlib",
30
- "scsv",
30
+ "scsv>=0.1.4",
31
31
  ]
32
32
 
33
33
  [project.urls]
34
34
  Homepage = "https://github.com/konung-yaropolk/DiaModality"
35
+ Repository = "https://github.com/konung-yaropolk/DiaModality.git"
35
36
  Issues = "https://github.com/konung-yaropolk/DiaModality/issues"
36
37
 
37
38
  [tool.setuptools.dynamic]
@@ -20,7 +20,7 @@ class __Figure():
20
20
  linewidth=0.5,
21
21
  alpha=0.8,
22
22
  figsize=(10, 10),
23
- dpi=300,
23
+ dpi=100,
24
24
  title='',
25
25
  ) -> None:
26
26
 
@@ -0,0 +1 @@
1
+ __version__ = "0.2.3"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: DiaModality
3
- Version: 0.2.1
3
+ Version: 0.2.3
4
4
  Summary: Tool to plot modality vector diagrams
5
5
  Author-email: konung-yaropolk <yaropolk1995@gmail.com>
6
6
  License: MIT License
@@ -25,6 +25,7 @@ License: MIT License
25
25
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26
26
  SOFTWARE.
27
27
  Project-URL: Homepage, https://github.com/konung-yaropolk/DiaModality
28
+ Project-URL: Repository, https://github.com/konung-yaropolk/DiaModality.git
28
29
  Project-URL: Issues, https://github.com/konung-yaropolk/DiaModality/issues
29
30
  Keywords: Visualization,Science,Plotting,Matplotlib
30
31
  Classifier: Programming Language :: Python
@@ -41,7 +42,7 @@ Description-Content-Type: text/markdown
41
42
  License-File: LICENSE
42
43
  Requires-Dist: numpy
43
44
  Requires-Dist: matplotlib
44
- Requires-Dist: scsv
45
+ Requires-Dist: scsv>=0.1.4
45
46
 
46
47
  # DiaModality - The Modality Diagram
47
48
 
@@ -123,7 +124,7 @@ for file in files:
123
124
 
124
125
  # Parse data from csv file
125
126
  new_csv = csv.OpenFile(file_path)
126
- data, binarization = new_csv.ParseCsv(3, 3)
127
+ data, binarization = new_csv.GetRows(3, 3)
127
128
 
128
129
  # Make figure:
129
130
  plot = plt.ModalityPlot(
@@ -144,7 +145,7 @@ for file in files:
144
145
  # else draw trimodal vectors only
145
146
  whole_sum=True, # Calculate all three modality vectors despite binarization
146
147
  figsize=(10, 10),
147
- dpi=200,
148
+ dpi=100,
148
149
  title='Modality Diagram Example',
149
150
  colors=(
150
151
  'tab:green', # Set 1 color
@@ -1,3 +1,3 @@
1
1
  numpy
2
2
  matplotlib
3
- scsv
3
+ scsv>=0.1.4
@@ -1 +0,0 @@
1
- __version__ = "0.2.1"
File without changes
File without changes
File without changes