batplot 1.4.3__tar.gz → 1.4.5__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.
Files changed (32) hide show
  1. {batplot-1.4.3 → batplot-1.4.5}/PKG-INFO +3 -2
  2. {batplot-1.4.3 → batplot-1.4.5}/README.md +1 -1
  3. {batplot-1.4.3 → batplot-1.4.5}/batplot/__init__.py +1 -1
  4. {batplot-1.4.3 → batplot-1.4.5}/batplot.egg-info/PKG-INFO +3 -2
  5. {batplot-1.4.3 → batplot-1.4.5}/batplot.egg-info/requires.txt +1 -0
  6. {batplot-1.4.3 → batplot-1.4.5}/pyproject.toml +3 -2
  7. {batplot-1.4.3 → batplot-1.4.5}/LICENSE +0 -0
  8. {batplot-1.4.3 → batplot-1.4.5}/batplot/args.py +0 -0
  9. {batplot-1.4.3 → batplot-1.4.5}/batplot/batch.py +0 -0
  10. {batplot-1.4.3 → batplot-1.4.5}/batplot/batplot.py +0 -0
  11. {batplot-1.4.3 → batplot-1.4.5}/batplot/batplot_new.py +0 -0
  12. {batplot-1.4.3 → batplot-1.4.5}/batplot/cif.py +0 -0
  13. {batplot-1.4.3 → batplot-1.4.5}/batplot/cli.py +0 -0
  14. {batplot-1.4.3 → batplot-1.4.5}/batplot/converters.py +0 -0
  15. {batplot-1.4.3 → batplot-1.4.5}/batplot/cpc_interactive.py +0 -0
  16. {batplot-1.4.3 → batplot-1.4.5}/batplot/electrochem_interactive.py +0 -0
  17. {batplot-1.4.3 → batplot-1.4.5}/batplot/interactive.py +0 -0
  18. {batplot-1.4.3 → batplot-1.4.5}/batplot/modes.py +0 -0
  19. {batplot-1.4.3 → batplot-1.4.5}/batplot/operando.py +0 -0
  20. {batplot-1.4.3 → batplot-1.4.5}/batplot/operando_ec_interactive.py +0 -0
  21. {batplot-1.4.3 → batplot-1.4.5}/batplot/plotting.py +0 -0
  22. {batplot-1.4.3 → batplot-1.4.5}/batplot/readers.py +0 -0
  23. {batplot-1.4.3 → batplot-1.4.5}/batplot/session.py +0 -0
  24. {batplot-1.4.3 → batplot-1.4.5}/batplot/style.py +0 -0
  25. {batplot-1.4.3 → batplot-1.4.5}/batplot/ui.py +0 -0
  26. {batplot-1.4.3 → batplot-1.4.5}/batplot/utils.py +0 -0
  27. {batplot-1.4.3 → batplot-1.4.5}/batplot.egg-info/SOURCES.txt +0 -0
  28. {batplot-1.4.3 → batplot-1.4.5}/batplot.egg-info/dependency_links.txt +0 -0
  29. {batplot-1.4.3 → batplot-1.4.5}/batplot.egg-info/entry_points.txt +0 -0
  30. {batplot-1.4.3 → batplot-1.4.5}/batplot.egg-info/top_level.txt +0 -0
  31. {batplot-1.4.3 → batplot-1.4.5}/setup.cfg +0 -0
  32. {batplot-1.4.3 → batplot-1.4.5}/setup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: batplot
3
- Version: 1.4.3
3
+ Version: 1.4.5
4
4
  Summary: Interactive plotting for XRD, PDF, and XAS data (.xye, .xy, .qye, .dat, .csv, .gr, .nor, .chik, .chir)
5
5
  Author-email: Tian Dai <tianda@uio.no>
6
6
  License: MIT License
@@ -46,6 +46,7 @@ License-File: LICENSE
46
46
  Requires-Dist: numpy
47
47
  Requires-Dist: matplotlib
48
48
  Requires-Dist: rich>=10.0.0
49
+ Requires-Dist: openpyxl>=3.0.0
49
50
  Dynamic: license-file
50
51
 
51
52
  # batplot
@@ -146,7 +147,7 @@ batplot --operando --interactive
146
147
 
147
148
  | Type | Formats |
148
149
  |------|---------|
149
- | **Electrochemistry** | `.csv` (Neware), `.mpt` (Biologic), `.xlsx` (Landt/Lanhe) CPC only |
150
+ | **Electrochemistry** | `.csv` (Neware raw data; summary format for CPC), `.mpt` (Biologic), `.xlsx` (Landt/Lanhe summary for CPC) |
150
151
  | **XRD / PDF** | `.xye`, `.xy`, `.qye`, `.dat` |
151
152
  | **XAS** | `.nor`, `.chik`, `.chir` |
152
153
  | **Others** | `user defined` (plot first two columns as x and y) |
@@ -96,7 +96,7 @@ batplot --operando --interactive
96
96
 
97
97
  | Type | Formats |
98
98
  |------|---------|
99
- | **Electrochemistry** | `.csv` (Neware), `.mpt` (Biologic), `.xlsx` (Landt/Lanhe) CPC only |
99
+ | **Electrochemistry** | `.csv` (Neware raw data; summary format for CPC), `.mpt` (Biologic), `.xlsx` (Landt/Lanhe summary for CPC) |
100
100
  | **XRD / PDF** | `.xye`, `.xy`, `.qye`, `.dat` |
101
101
  | **XAS** | `.nor`, `.chik`, `.chir` |
102
102
  | **Others** | `user defined` (plot first two columns as x and y) |
@@ -1,5 +1,5 @@
1
1
  """batplot: Interactive plotting for battery data visualization."""
2
2
 
3
- __version__ = "1.4.3"
3
+ __version__ = "1.4.5"
4
4
 
5
5
  __all__ = ["__version__"]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: batplot
3
- Version: 1.4.3
3
+ Version: 1.4.5
4
4
  Summary: Interactive plotting for XRD, PDF, and XAS data (.xye, .xy, .qye, .dat, .csv, .gr, .nor, .chik, .chir)
5
5
  Author-email: Tian Dai <tianda@uio.no>
6
6
  License: MIT License
@@ -46,6 +46,7 @@ License-File: LICENSE
46
46
  Requires-Dist: numpy
47
47
  Requires-Dist: matplotlib
48
48
  Requires-Dist: rich>=10.0.0
49
+ Requires-Dist: openpyxl>=3.0.0
49
50
  Dynamic: license-file
50
51
 
51
52
  # batplot
@@ -146,7 +147,7 @@ batplot --operando --interactive
146
147
 
147
148
  | Type | Formats |
148
149
  |------|---------|
149
- | **Electrochemistry** | `.csv` (Neware), `.mpt` (Biologic), `.xlsx` (Landt/Lanhe) CPC only |
150
+ | **Electrochemistry** | `.csv` (Neware raw data; summary format for CPC), `.mpt` (Biologic), `.xlsx` (Landt/Lanhe summary for CPC) |
150
151
  | **XRD / PDF** | `.xye`, `.xy`, `.qye`, `.dat` |
151
152
  | **XAS** | `.nor`, `.chik`, `.chir` |
152
153
  | **Others** | `user defined` (plot first two columns as x and y) |
@@ -1,3 +1,4 @@
1
1
  numpy
2
2
  matplotlib
3
3
  rich>=10.0.0
4
+ openpyxl>=3.0.0
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "batplot"
7
- version = "1.4.3"
7
+ version = "1.4.5"
8
8
  description = "Interactive plotting for XRD, PDF, and XAS data (.xye, .xy, .qye, .dat, .csv, .gr, .nor, .chik, .chir)"
9
9
  authors = [
10
10
  { name = "Tian Dai", email = "tianda@uio.no" }
@@ -14,7 +14,8 @@ requires-python = ">=3.7"
14
14
  dependencies = [
15
15
  "numpy",
16
16
  "matplotlib",
17
- "rich>=10.0.0"
17
+ "rich>=10.0.0",
18
+ "openpyxl>=3.0.0"
18
19
  ]
19
20
  license = { file = "LICENSE" }
20
21
  classifiers = [
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes