batplot 1.3.2__tar.gz → 1.3.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.
- {batplot-1.3.2 → batplot-1.3.3}/PKG-INFO +4 -2
- {batplot-1.3.2 → batplot-1.3.3}/README.md +3 -1
- {batplot-1.3.2 → batplot-1.3.3}/batplot/args.py +4 -1
- {batplot-1.3.2 → batplot-1.3.3}/batplot.egg-info/PKG-INFO +4 -2
- {batplot-1.3.2 → batplot-1.3.3}/pyproject.toml +1 -1
- {batplot-1.3.2 → batplot-1.3.3}/LICENSE +0 -0
- {batplot-1.3.2 → batplot-1.3.3}/batplot/__init__.py +0 -0
- {batplot-1.3.2 → batplot-1.3.3}/batplot/batch.py +0 -0
- {batplot-1.3.2 → batplot-1.3.3}/batplot/batplot.py +0 -0
- {batplot-1.3.2 → batplot-1.3.3}/batplot/batplot_new.py +0 -0
- {batplot-1.3.2 → batplot-1.3.3}/batplot/cif.py +0 -0
- {batplot-1.3.2 → batplot-1.3.3}/batplot/cli.py +0 -0
- {batplot-1.3.2 → batplot-1.3.3}/batplot/converters.py +0 -0
- {batplot-1.3.2 → batplot-1.3.3}/batplot/cpc_interactive.py +0 -0
- {batplot-1.3.2 → batplot-1.3.3}/batplot/electrochem_interactive.py +0 -0
- {batplot-1.3.2 → batplot-1.3.3}/batplot/interactive.py +0 -0
- {batplot-1.3.2 → batplot-1.3.3}/batplot/modes.py +0 -0
- {batplot-1.3.2 → batplot-1.3.3}/batplot/operando.py +0 -0
- {batplot-1.3.2 → batplot-1.3.3}/batplot/operando_ec_interactive.py +0 -0
- {batplot-1.3.2 → batplot-1.3.3}/batplot/plotting.py +0 -0
- {batplot-1.3.2 → batplot-1.3.3}/batplot/readers.py +0 -0
- {batplot-1.3.2 → batplot-1.3.3}/batplot/session.py +0 -0
- {batplot-1.3.2 → batplot-1.3.3}/batplot/style.py +0 -0
- {batplot-1.3.2 → batplot-1.3.3}/batplot/ui.py +0 -0
- {batplot-1.3.2 → batplot-1.3.3}/batplot/utils.py +0 -0
- {batplot-1.3.2 → batplot-1.3.3}/batplot.egg-info/SOURCES.txt +0 -0
- {batplot-1.3.2 → batplot-1.3.3}/batplot.egg-info/dependency_links.txt +0 -0
- {batplot-1.3.2 → batplot-1.3.3}/batplot.egg-info/entry_points.txt +0 -0
- {batplot-1.3.2 → batplot-1.3.3}/batplot.egg-info/requires.txt +0 -0
- {batplot-1.3.2 → batplot-1.3.3}/batplot.egg-info/top_level.txt +0 -0
- {batplot-1.3.2 → batplot-1.3.3}/setup.cfg +0 -0
- {batplot-1.3.2 → batplot-1.3.3}/setup.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: batplot
|
|
3
|
-
Version: 1.3.
|
|
3
|
+
Version: 1.3.3
|
|
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
|
|
@@ -166,7 +166,9 @@ For detailed usage, see [USER_MANUAL.md](USER_MANUAL.md)
|
|
|
166
166
|
|
|
167
167
|
See [LICENSE](LICENSE)
|
|
168
168
|
|
|
169
|
-
## Author
|
|
169
|
+
## Author & Contact
|
|
170
170
|
|
|
171
171
|
Tian Dai (tianda@uio.no)
|
|
172
172
|
University of Oslo
|
|
173
|
+
|
|
174
|
+
**GitHub**: https://github.com/tiandai-chem/batplot
|
|
@@ -46,7 +46,10 @@ def _print_general_help() -> None:
|
|
|
46
46
|
"More help:\n"
|
|
47
47
|
" batplot -h xy # XY file plotting guide\n"
|
|
48
48
|
" batplot -h ec # Electrochemistry (GC/dQdV/CV/CPC) guide\n"
|
|
49
|
-
" batplot -h op # Operando guide\n"
|
|
49
|
+
" batplot -h op # Operando guide\n\n"
|
|
50
|
+
"Contact:\n"
|
|
51
|
+
" GitHub: https://github.com/tiandai-chem/batplot\n"
|
|
52
|
+
" Email: tianda@uio.no\n"
|
|
50
53
|
)
|
|
51
54
|
print(msg)
|
|
52
55
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: batplot
|
|
3
|
-
Version: 1.3.
|
|
3
|
+
Version: 1.3.3
|
|
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
|
|
@@ -166,7 +166,9 @@ For detailed usage, see [USER_MANUAL.md](USER_MANUAL.md)
|
|
|
166
166
|
|
|
167
167
|
See [LICENSE](LICENSE)
|
|
168
168
|
|
|
169
|
-
## Author
|
|
169
|
+
## Author & Contact
|
|
170
170
|
|
|
171
171
|
Tian Dai (tianda@uio.no)
|
|
172
172
|
University of Oslo
|
|
173
|
+
|
|
174
|
+
**GitHub**: https://github.com/tiandai-chem/batplot
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "batplot"
|
|
7
|
-
version = "1.3.
|
|
7
|
+
version = "1.3.3"
|
|
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" }
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|