jarvisplot 1.0.1__py3-none-any.whl → 1.0.3__py3-none-any.whl

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.

Potentially problematic release.


This version of jarvisplot might be problematic. Click here for more details.

@@ -0,0 +1 @@
1
+ # JarvisPLOT Figure subpackage
jarvisplot/cli.py CHANGED
@@ -6,7 +6,8 @@ import os, sys
6
6
 
7
7
  # --- version import fallback ---
8
8
  try:
9
- from .version import __version__ as JPLOT_VERSION
9
+ from importlib.metadata import version as _pkg_version
10
+ JPLOT_VERSION = _pkg_version("jarvisplot")
10
11
  except Exception:
11
12
  JPLOT_VERSION = "0.0.0"
12
13
 
jarvisplot/client.py CHANGED
@@ -3,4 +3,5 @@
3
3
  def main():
4
4
  from jarvisplot.core import JarvisPLOT
5
5
  jp = JarvisPLOT()
6
- jp.init()
6
+ jp.init()
7
+ return 0
jarvisplot/core.py CHANGED
@@ -16,14 +16,13 @@ from .Figure.data_pipelines import SharedContent, DataContext
16
16
 
17
17
  class JarvisPLOT():
18
18
  def __init__(self) -> None:
19
- self.dataset = {}
20
19
  self.variables = {}
21
20
  self.yaml = ConfigLoader()
22
21
  self.style = {}
23
22
  self.profiles = {}
24
23
  self.cli = CLI()
25
24
  self.logger = None
26
- self.dataset: Optional[Dict[DataSet]] = []
25
+ self.dataset: list[DataSet] = []
27
26
  self.shared = None
28
27
  self.ctx = None
29
28
  self.interpolators = None
@@ -164,6 +163,7 @@ class JarvisPLOT():
164
163
  self.cli.args.print_help()
165
164
  help_text = buf.getvalue()
166
165
  self.logger.warning("JarvisPLOT " + help_text)
166
+ sys.exit(2)
167
167
  except Exception:
168
168
  pass
169
169
  return
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: jarvisplot
3
- Version: 1.0.1
3
+ Version: 1.0.3
4
4
  Summary: JarvisPLOT: YAML-driven plotting engine
5
5
  Requires-Python: >=3.10
6
6
  Description-Content-Type: text/markdown
@@ -10,6 +10,10 @@ Requires-Dist: jsonschema
10
10
  Requires-Dist: numpy
11
11
  Requires-Dist: pandas
12
12
  Requires-Dist: matplotlib
13
+ Requires-Dist: h5py
14
+ Requires-Dist: sympy
15
+ Requires-Dist: scipy
16
+ Requires-Dist: shapely
13
17
 
14
18
  # JarvisPLOT
15
19
 
@@ -20,6 +24,12 @@ It provides a simple command-line interface (CLI) to generate publication-qualit
20
24
 
21
25
  ---
22
26
 
27
+ ## Installation
28
+
29
+ ```bash
30
+ pip install jarvisplot
31
+ ```
32
+
23
33
  ## Command-Line Usage
24
34
 
25
35
  Display help information:
@@ -1,10 +1,11 @@
1
1
  jarvisplot/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- jarvisplot/cli.py,sha256=QwVmR48yHPsGbGSWqNj8Pbo53nYaLSPrhMa3LPvsiNI,2543
3
- jarvisplot/client.py,sha256=vjcxT4Y9v8F0nfqId4ROSE0xbbZW7cv-rIxOwh2LzFk,115
2
+ jarvisplot/cli.py,sha256=griJye-tkRnwFPa7QUS3dgZ9T5sqv22aGZjs5-f0FPo,2595
3
+ jarvisplot/client.py,sha256=oc_EU5-ZN0B4Cn7Xkb0_oI1mnrPwxMmKd6cnAL-_4fc,128
4
4
  jarvisplot/config.py,sha256=edHNoumh4bDjzj7hP1dGM6chCz_El4qNPA_wL4M3LCQ,2282
5
- jarvisplot/core.py,sha256=7ekrBL9UejjUYYTub8zYh2aOvSiEyp7V4T8vjhuCHhM,8890
5
+ jarvisplot/core.py,sha256=4MJM-Ixv2cR311a9SNAW3lrP5RvvRJ8wtOIszgjI2uE,8873
6
6
  jarvisplot/data_loader.py,sha256=QIN3NZPSl63xGSH_3C2upmj1-aTfkZrLY-oK6g8Lrz4,16740
7
7
  jarvisplot/inner_func.py,sha256=hQeoJzVeTVjIb8_qRbHPf0_5lj-y0QEdOZEy-Yowm88,4158
8
+ jarvisplot/Figure/__init__.py,sha256=X06Fgcfy5sALAD5DesZw68m_hs7EcVBLzM0AJVte5iA,30
8
9
  jarvisplot/Figure/adapters.py,sha256=END12kkzmhnG_bJddfQ3CQy0P3DlrY5I6WRl2DfiKlU,28502
9
10
  jarvisplot/Figure/data_pipelines.py,sha256=4mOHyYEHkqUCsEvDL2X7l2hE9ya2HyE0rmVqJLJ6b9E,3348
10
11
  jarvisplot/Figure/figure.py,sha256=yPfKXiN-ahXuiR4x-xVAhzyRBoXdC41yofDAWF0S6a4,66593
@@ -35,8 +36,8 @@ jarvisplot/cards/icons/gambit_small.png,sha256=maQSLO4PPSn4_J9rqIqp0qvY4Rtpx9Gii
35
36
  jarvisplot/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
36
37
  jarvisplot/utils/cmaps.py,sha256=2IKOUzsOZb8KReEggbNCNAdzS6IhWrcMMSUw03CunpM,9449
37
38
  jarvisplot/utils/interpolator.py,sha256=CG6Wi6BX2cAI-TdL0d51J9wXnjxawc4R_uPlNoXHfss,13126
38
- jarvisplot-1.0.1.dist-info/METADATA,sha256=wk9MzJuePhkdxrnd_bNLzAPNjYgsmF5uUOjGh0rjH34,1864
39
- jarvisplot-1.0.1.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
40
- jarvisplot-1.0.1.dist-info/entry_points.txt,sha256=1dvnP7V3PTjdtL3G8OIDEKopJlDFJccC0EzFKmvp4jM,49
41
- jarvisplot-1.0.1.dist-info/top_level.txt,sha256=Rvy30upSt2sE_reLghmQejiBTIo5t6HXLnMwIsiKWS8,11
42
- jarvisplot-1.0.1.dist-info/RECORD,,
39
+ jarvisplot-1.0.3.dist-info/METADATA,sha256=s20uDNj80SgJbnQmvr6Z68C7DFEBCxkCIkkM8Qei0Ag,2004
40
+ jarvisplot-1.0.3.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
41
+ jarvisplot-1.0.3.dist-info/entry_points.txt,sha256=1dvnP7V3PTjdtL3G8OIDEKopJlDFJccC0EzFKmvp4jM,49
42
+ jarvisplot-1.0.3.dist-info/top_level.txt,sha256=Rvy30upSt2sE_reLghmQejiBTIo5t6HXLnMwIsiKWS8,11
43
+ jarvisplot-1.0.3.dist-info/RECORD,,