orto 0.26.2__tar.gz → 0.26.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.
- {orto-0.26.2 → orto-0.26.3}/PKG-INFO +3 -3
- orto-0.26.3/orto/__version__.py +1 -0
- {orto-0.26.2 → orto-0.26.3}/orto/cli.py +1 -1
- {orto-0.26.2 → orto-0.26.3}/orto.egg-info/PKG-INFO +3 -3
- {orto-0.26.2 → orto-0.26.3}/setup.py +3 -3
- orto-0.26.2/orto/__version__.py +0 -1
- {orto-0.26.2 → orto-0.26.3}/README.md +0 -0
- {orto-0.26.2 → orto-0.26.3}/orto/__init__.py +0 -0
- {orto-0.26.2 → orto-0.26.3}/orto/extractor.py +0 -0
- {orto-0.26.2 → orto-0.26.3}/orto/input.py +0 -0
- {orto-0.26.2 → orto-0.26.3}/orto/job.py +0 -0
- {orto-0.26.2 → orto-0.26.3}/orto/plotter.py +0 -0
- {orto-0.26.2 → orto-0.26.3}/orto/utils.py +0 -0
- {orto-0.26.2 → orto-0.26.3}/orto.egg-info/SOURCES.txt +0 -0
- {orto-0.26.2 → orto-0.26.3}/orto.egg-info/dependency_links.txt +0 -0
- {orto-0.26.2 → orto-0.26.3}/orto.egg-info/entry_points.txt +0 -0
- {orto-0.26.2 → orto-0.26.3}/orto.egg-info/requires.txt +0 -0
- {orto-0.26.2 → orto-0.26.3}/orto.egg-info/top_level.txt +0 -0
- {orto-0.26.2 → orto-0.26.3}/pyproject.toml +0 -0
- {orto-0.26.2 → orto-0.26.3}/setup.cfg +0 -0
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: orto
|
|
3
|
-
Version: 0.26.
|
|
3
|
+
Version: 0.26.3
|
|
4
4
|
Summary: A package to make life easier when performing Orca calculations.
|
|
5
|
-
Home-page: https://
|
|
5
|
+
Home-page: https://orto.kragskow.group
|
|
6
6
|
Author: Jon Kragskow
|
|
7
7
|
Author-email: jgck20@bath.ac.uk
|
|
8
8
|
Project-URL: Bug Tracker, https://gitlab.com/kragskow-group/orto/issues
|
|
9
|
-
Project-URL: Documentation, https://
|
|
9
|
+
Project-URL: Documentation, https://orto.kragskow.group
|
|
10
10
|
Classifier: Programming Language :: Python :: 3
|
|
11
11
|
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
|
|
12
12
|
Classifier: Operating System :: OS Independent
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = '0.26.3'
|
|
@@ -242,7 +242,7 @@ def extract_gmatrix_func(uargs, save=True):
|
|
|
242
242
|
with open(out_name, 'w') as f:
|
|
243
243
|
for it, data in enumerate(all_data):
|
|
244
244
|
if len(all_data) > 1:
|
|
245
|
-
f.write(f'Section {it + 1:d}')
|
|
245
|
+
f.write(f'Section {it + 1:d}\n')
|
|
246
246
|
for key, val in data.items():
|
|
247
247
|
f.write(f'{key}:\n')
|
|
248
248
|
f.write(str(val).replace('[', '').replace(']', ''))
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: orto
|
|
3
|
-
Version: 0.26.
|
|
3
|
+
Version: 0.26.3
|
|
4
4
|
Summary: A package to make life easier when performing Orca calculations.
|
|
5
|
-
Home-page: https://
|
|
5
|
+
Home-page: https://orto.kragskow.group
|
|
6
6
|
Author: Jon Kragskow
|
|
7
7
|
Author-email: jgck20@bath.ac.uk
|
|
8
8
|
Project-URL: Bug Tracker, https://gitlab.com/kragskow-group/orto/issues
|
|
9
|
-
Project-URL: Documentation, https://
|
|
9
|
+
Project-URL: Documentation, https://orto.kragskow.group
|
|
10
10
|
Classifier: Programming Language :: Python :: 3
|
|
11
11
|
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
|
|
12
12
|
Classifier: Operating System :: OS Independent
|
|
@@ -8,7 +8,7 @@ Please see the `orto` documentation for more details.
|
|
|
8
8
|
|
|
9
9
|
# DO NOT EDIT THIS NUMBER!
|
|
10
10
|
# IT IS AUTOMATICALLY CHANGED BY python-semantic-release
|
|
11
|
-
__version__ = '0.26.
|
|
11
|
+
__version__ = '0.26.3'
|
|
12
12
|
|
|
13
13
|
setuptools.setup(
|
|
14
14
|
name='orto',
|
|
@@ -18,10 +18,10 @@ setuptools.setup(
|
|
|
18
18
|
description='A package to make life easier when performing Orca calculations.', # noqa
|
|
19
19
|
long_description=long_description,
|
|
20
20
|
long_description_content_type='text/markdown',
|
|
21
|
-
url='https://
|
|
21
|
+
url='https://orto.kragskow.group',
|
|
22
22
|
project_urls={
|
|
23
23
|
'Bug Tracker': 'https://gitlab.com/kragskow-group/orto/issues',
|
|
24
|
-
'Documentation': 'https://
|
|
24
|
+
'Documentation': 'https://orto.kragskow.group'
|
|
25
25
|
},
|
|
26
26
|
classifiers=[
|
|
27
27
|
'Programming Language :: Python :: 3',
|
orto-0.26.2/orto/__version__.py
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = '0.26.2'
|
|
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
|