orto 1.7.0__tar.gz → 1.7.1__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.
- {orto-1.7.0 → orto-1.7.1}/PKG-INFO +1 -1
- orto-1.7.1/orto/__version__.py +1 -0
- {orto-1.7.0 → orto-1.7.1}/orto/cli.py +5 -5
- {orto-1.7.0 → orto-1.7.1}/orto.egg-info/PKG-INFO +1 -1
- {orto-1.7.0 → orto-1.7.1}/setup.py +1 -1
- orto-1.7.0/orto/__version__.py +0 -1
- {orto-1.7.0 → orto-1.7.1}/LICENSE +0 -0
- {orto-1.7.0 → orto-1.7.1}/README.md +0 -0
- {orto-1.7.0 → orto-1.7.1}/orto/__init__.py +0 -0
- {orto-1.7.0 → orto-1.7.1}/orto/constants.py +0 -0
- {orto-1.7.0 → orto-1.7.1}/orto/data.py +0 -0
- {orto-1.7.0 → orto-1.7.1}/orto/exceptions.py +0 -0
- {orto-1.7.0 → orto-1.7.1}/orto/extractor.py +0 -0
- {orto-1.7.0 → orto-1.7.1}/orto/input.py +0 -0
- {orto-1.7.0 → orto-1.7.1}/orto/job.py +0 -0
- {orto-1.7.0 → orto-1.7.1}/orto/plotter.py +0 -0
- {orto-1.7.0 → orto-1.7.1}/orto/utils.py +0 -0
- {orto-1.7.0 → orto-1.7.1}/orto.egg-info/SOURCES.txt +0 -0
- {orto-1.7.0 → orto-1.7.1}/orto.egg-info/dependency_links.txt +0 -0
- {orto-1.7.0 → orto-1.7.1}/orto.egg-info/entry_points.txt +0 -0
- {orto-1.7.0 → orto-1.7.1}/orto.egg-info/requires.txt +0 -0
- {orto-1.7.0 → orto-1.7.1}/orto.egg-info/top_level.txt +0 -0
- {orto-1.7.0 → orto-1.7.1}/pyproject.toml +0 -0
- {orto-1.7.0 → orto-1.7.1}/setup.cfg +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = '1.7.1'
|
|
@@ -942,7 +942,7 @@ def plot_abs_func(uargs, save_data_only=False):
|
|
|
942
942
|
if save_data_only:
|
|
943
943
|
# Save spectrum data to file
|
|
944
944
|
abs_data.save_spectrum_data(
|
|
945
|
-
f'absorption_spectrum_{output_file}.csv',
|
|
945
|
+
f'absorption_spectrum_{output_file.stem}.csv',
|
|
946
946
|
comments='Data from {}\nfwhm={}, lineshape={}\nintensities={}'.format( # noqa
|
|
947
947
|
output_file,
|
|
948
948
|
uargs.linewidth,
|
|
@@ -951,18 +951,18 @@ def plot_abs_func(uargs, save_data_only=False):
|
|
|
951
951
|
)
|
|
952
952
|
)
|
|
953
953
|
abs_data.save_transition_data(
|
|
954
|
-
f'transition_data_{output_file}.csv',
|
|
954
|
+
f'transition_data_{output_file.stem}.csv',
|
|
955
955
|
comments='Data from {}\nintensities={}'.format(
|
|
956
956
|
output_file,
|
|
957
957
|
uargs.intensities
|
|
958
958
|
)
|
|
959
959
|
)
|
|
960
960
|
ut.cprint(
|
|
961
|
-
f'Saved absorption data to absorption_spectrum_{output_file}.csv', # noqa
|
|
961
|
+
f'Saved absorption data to absorption_spectrum_{output_file.stem}.csv', # noqa
|
|
962
962
|
'cyan'
|
|
963
963
|
)
|
|
964
964
|
ut.cprint(
|
|
965
|
-
f'Saved absorption spectrum data to transition_data_{output_file}.csv', # noqa
|
|
965
|
+
f'Saved absorption spectrum data to transition_data_{output_file.stem}.csv', # noqa
|
|
966
966
|
'cyan'
|
|
967
967
|
)
|
|
968
968
|
else:
|
|
@@ -987,7 +987,7 @@ def plot_abs_func(uargs, save_data_only=False):
|
|
|
987
987
|
|
|
988
988
|
if not save_data_only:
|
|
989
989
|
if _SAVE_CONV[uargs.plot]:
|
|
990
|
-
savename = f'absorption_spectrum_{output_file}.png'
|
|
990
|
+
savename = f'absorption_spectrum_{output_file.stem}.png'
|
|
991
991
|
plt.savefig(savename, dpi=500)
|
|
992
992
|
ut.cprint(f'Saved image to {savename}', 'cyan')
|
|
993
993
|
|
orto-1.7.0/orto/__version__.py
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = '1.7.0'
|
|
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
|