batplot 1.0.7__tar.gz → 1.0.8__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.0.7 → batplot-1.0.8}/PKG-INFO +1 -1
- {batplot-1.0.7 → batplot-1.0.8}/batplot/batplot.py +14 -14
- {batplot-1.0.7 → batplot-1.0.8}/batplot.egg-info/PKG-INFO +1 -1
- {batplot-1.0.7 → batplot-1.0.8}/pyproject.toml +1 -1
- {batplot-1.0.7 → batplot-1.0.8}/batplot/__init__.py +0 -0
- {batplot-1.0.7 → batplot-1.0.8}/batplot.egg-info/SOURCES.txt +0 -0
- {batplot-1.0.7 → batplot-1.0.8}/batplot.egg-info/dependency_links.txt +0 -0
- {batplot-1.0.7 → batplot-1.0.8}/batplot.egg-info/entry_points.txt +0 -0
- {batplot-1.0.7 → batplot-1.0.8}/batplot.egg-info/requires.txt +0 -0
- {batplot-1.0.7 → batplot-1.0.8}/batplot.egg-info/top_level.txt +0 -0
- {batplot-1.0.7 → batplot-1.0.8}/setup.cfg +0 -0
|
@@ -3330,20 +3330,20 @@ parser = argparse.ArgumentParser(
|
|
|
3330
3330
|
" batplot all -> batch export all supported files in current directory to ./batplot_svg/*.svg\n",
|
|
3331
3331
|
formatter_class=argparse.RawDescriptionHelpFormatter
|
|
3332
3332
|
)
|
|
3333
|
-
parser.add_argument("files", nargs="*")
|
|
3334
|
-
parser.add_argument("--delta", "-d", type=float, default=None)
|
|
3335
|
-
parser.add_argument("--autoscale", action="store_true")
|
|
3336
|
-
parser.add_argument("--xrange", "-r", nargs=2, type=float)
|
|
3337
|
-
parser.add_argument("--out", "-o", type=str)
|
|
3338
|
-
parser.add_argument("--errors", action="store_true")
|
|
3339
|
-
parser.add_argument("--xaxis", type=str)
|
|
3340
|
-
parser.add_argument("--convert", "-c", nargs="+")
|
|
3341
|
-
parser.add_argument("--wl", type=float)
|
|
3342
|
-
parser.add_argument("--fullprof", nargs="+", type=float)
|
|
3343
|
-
parser.add_argument("--raw", action="store_true")
|
|
3344
|
-
parser.add_argument("--interactive", action="store_true")
|
|
3345
|
-
parser.add_argument("--savefig", type=str)
|
|
3346
|
-
parser.add_argument("--stack", action="store_true")
|
|
3333
|
+
parser.add_argument("files", nargs="*", help=argparse.SUPPRESS)
|
|
3334
|
+
parser.add_argument("--delta", "-d", type=float, default=None, help=argparse.SUPPRESS)
|
|
3335
|
+
parser.add_argument("--autoscale", action="store_true", help=argparse.SUPPRESS)
|
|
3336
|
+
parser.add_argument("--xrange", "-r", nargs=2, type=float, help=argparse.SUPPRESS)
|
|
3337
|
+
parser.add_argument("--out", "-o", type=str, help=argparse.SUPPRESS)
|
|
3338
|
+
parser.add_argument("--errors", action="store_true", help=argparse.SUPPRESS)
|
|
3339
|
+
parser.add_argument("--xaxis", type=str, help=argparse.SUPPRESS)
|
|
3340
|
+
parser.add_argument("--convert", "-c", nargs="+", help=argparse.SUPPRESS)
|
|
3341
|
+
parser.add_argument("--wl", type=float, help=argparse.SUPPRESS)
|
|
3342
|
+
parser.add_argument("--fullprof", nargs="+", type=float, help=argparse.SUPPRESS)
|
|
3343
|
+
parser.add_argument("--raw", action="store_true", help=argparse.SUPPRESS)
|
|
3344
|
+
parser.add_argument("--interactive", action="store_true", help=argparse.SUPPRESS)
|
|
3345
|
+
parser.add_argument("--savefig", type=str, help=argparse.SUPPRESS)
|
|
3346
|
+
parser.add_argument("--stack", action="store_true", help=argparse.SUPPRESS)
|
|
3347
3347
|
|
|
3348
3348
|
# parser.add_argument("files", nargs="*", help="Files to plot. Optionally specify wavelength per file: file.xye")
|
|
3349
3349
|
# parser.add_argument("--delta", "-d", type=float, default=None,
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "batplot"
|
|
7
|
-
version = "1.0.
|
|
7
|
+
version = "1.0.8"
|
|
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
|