iMolpro 0.2026.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.
- imolpro-0.2026.3/.dockerignore +2 -0
- imolpro-0.2026.3/.gitattributes +2 -0
- imolpro-0.2026.3/.github/workflows/clean-releases.yml +35 -0
- imolpro-0.2026.3/.github/workflows/deploy.yml +136 -0
- imolpro-0.2026.3/.github/workflows/publish-pypi.yml +66 -0
- imolpro-0.2026.3/.github/workflows/tag-latest.yml +46 -0
- imolpro-0.2026.3/.gitignore +18 -0
- imolpro-0.2026.3/Dockerfile +6 -0
- imolpro-0.2026.3/ENV +1 -0
- imolpro-0.2026.3/INSTALL +8 -0
- imolpro-0.2026.3/LICENSE +674 -0
- imolpro-0.2026.3/MANIFEST.in +1 -0
- imolpro-0.2026.3/PKG-INFO +60 -0
- imolpro-0.2026.3/Package-README.md +8 -0
- imolpro-0.2026.3/Package-license.md +12 -0
- imolpro-0.2026.3/README.md +38 -0
- imolpro-0.2026.3/build.ps1 +79 -0
- imolpro-0.2026.3/build.sh +225 -0
- imolpro-0.2026.3/construct.yaml +7 -0
- imolpro-0.2026.3/iMolpro.nsi +214 -0
- imolpro-0.2026.3/iMolpro.py +30 -0
- imolpro-0.2026.3/malonaldehyde.molpro/.Info.plist.writing_object +1 -0
- imolpro-0.2026.3/malonaldehyde.molpro/.lock +0 -0
- imolpro-0.2026.3/malonaldehyde.molpro/.molpro.rc.lock +0 -0
- imolpro-0.2026.3/malonaldehyde.molpro/Info.plist +19 -0
- imolpro-0.2026.3/malonaldehyde.molpro/initial/malonaldehyde.xyz +12 -0
- imolpro-0.2026.3/malonaldehyde.molpro/malonaldehyde.inp +11 -0
- imolpro-0.2026.3/malonaldehyde.molpro/malonaldehyde.xyz +12 -0
- imolpro-0.2026.3/malonaldehyde.molpro/molpro.rc +1 -0
- imolpro-0.2026.3/malonaldehyde.molpro/run/13.molpro/.Info.plist.writing_object +1 -0
- imolpro-0.2026.3/malonaldehyde.molpro/run/13.molpro/.lock +0 -0
- imolpro-0.2026.3/malonaldehyde.molpro/run/13.molpro/.molpro.rc.lock +0 -0
- imolpro-0.2026.3/malonaldehyde.molpro/run/13.molpro/13.inp +9 -0
- imolpro-0.2026.3/malonaldehyde.molpro/run/13.molpro/13.lock +0 -0
- imolpro-0.2026.3/malonaldehyde.molpro/run/13.molpro/13.log +8079 -0
- imolpro-0.2026.3/malonaldehyde.molpro/run/13.molpro/13.out +804 -0
- imolpro-0.2026.3/malonaldehyde.molpro/run/13.molpro/13.stderr +0 -0
- imolpro-0.2026.3/malonaldehyde.molpro/run/13.molpro/13.stdout +0 -0
- imolpro-0.2026.3/malonaldehyde.molpro/run/13.molpro/13.xml +2208 -0
- imolpro-0.2026.3/malonaldehyde.molpro/run/13.molpro/Info.plist +13 -0
- imolpro-0.2026.3/malonaldehyde.molpro/run/13.molpro/first.molden +1613 -0
- imolpro-0.2026.3/malonaldehyde.molpro/run/13.molpro/malo.molden +2025 -0
- imolpro-0.2026.3/malonaldehyde.molpro/run/13.molpro/malonaldehyde.xyz +12 -0
- imolpro-0.2026.3/malonaldehyde.molpro/run/13.molpro/molpro.rc +1 -0
- imolpro-0.2026.3/malonaldehyde.molpro/run/13.molpro/second.molden +1623 -0
- imolpro-0.2026.3/molpro.icns +0 -0
- imolpro-0.2026.3/pyproject.toml +54 -0
- imolpro-0.2026.3/requirements.txt +13 -0
- imolpro-0.2026.3/setup.cfg +4 -0
- imolpro-0.2026.3/src/iMolpro/BasisSelector.py +116 -0
- imolpro-0.2026.3/src/iMolpro/CheckableComboBox.py +162 -0
- imolpro-0.2026.3/src/iMolpro/Chooser.py +402 -0
- imolpro-0.2026.3/src/iMolpro/MenuBar.py +71 -0
- imolpro-0.2026.3/src/iMolpro/OptionsDialog.py +98 -0
- imolpro-0.2026.3/src/iMolpro/ProjectWindow.py +1682 -0
- imolpro-0.2026.3/src/iMolpro/QVTKRenderWindowInteractor.py +808 -0
- imolpro-0.2026.3/src/iMolpro/RecentMenu.py +51 -0
- imolpro-0.2026.3/src/iMolpro/RunDirectoryMenu.py +115 -0
- imolpro-0.2026.3/src/iMolpro/SpinComboBox.py +76 -0
- imolpro-0.2026.3/src/iMolpro/WindowManager.py +95 -0
- imolpro-0.2026.3/src/iMolpro/__init__.py +9 -0
- imolpro-0.2026.3/src/iMolpro/__main__.py +134 -0
- imolpro-0.2026.3/src/iMolpro/_paths.py +38 -0
- imolpro-0.2026.3/src/iMolpro/backend.py +230 -0
- imolpro-0.2026.3/src/iMolpro/cli_install.py +245 -0
- imolpro-0.2026.3/src/iMolpro/cli_install_ui.py +97 -0
- imolpro-0.2026.3/src/iMolpro/cube_data.py +78 -0
- imolpro-0.2026.3/src/iMolpro/data/Molpro_Logo_Molpro_Quantum_Chemistry_Software.png +0 -0
- imolpro-0.2026.3/src/iMolpro/data/README.md +33 -0
- imolpro-0.2026.3/src/iMolpro/data/doc/INSTALL_macOS_binary.md +7 -0
- imolpro-0.2026.3/src/iMolpro/data/doc/ProjectWindow.png +0 -0
- imolpro-0.2026.3/src/iMolpro/data/doc/ProjectWindow2.png +0 -0
- imolpro-0.2026.3/src/iMolpro/data/doc/ProjectWindow3.png +0 -0
- imolpro-0.2026.3/src/iMolpro/data/doc/backends.md +97 -0
- imolpro-0.2026.3/src/iMolpro/data/doc/chooser.png +0 -0
- imolpro-0.2026.3/src/iMolpro/data/doc/display.md +13 -0
- imolpro-0.2026.3/src/iMolpro/data/doc/example.md +23 -0
- imolpro-0.2026.3/src/iMolpro/data/doc/runs.md +13 -0
- imolpro-0.2026.3/src/iMolpro/database.py +198 -0
- imolpro-0.2026.3/src/iMolpro/draggabletabwidget.py +222 -0
- imolpro-0.2026.3/src/iMolpro/help.py +123 -0
- imolpro-0.2026.3/src/iMolpro/project.py +93 -0
- imolpro-0.2026.3/src/iMolpro/pyqt_discover.py +56 -0
- imolpro-0.2026.3/src/iMolpro/settings.py +39 -0
- imolpro-0.2026.3/src/iMolpro/theme.py +225 -0
- imolpro-0.2026.3/src/iMolpro/utilities.py +645 -0
- imolpro-0.2026.3/src/iMolpro/vtk_molecule_widget.py +1129 -0
- imolpro-0.2026.3/src/iMolpro.egg-info/PKG-INFO +60 -0
- imolpro-0.2026.3/src/iMolpro.egg-info/SOURCES.txt +97 -0
- imolpro-0.2026.3/src/iMolpro.egg-info/dependency_links.txt +1 -0
- imolpro-0.2026.3/src/iMolpro.egg-info/entry_points.txt +2 -0
- imolpro-0.2026.3/src/iMolpro.egg-info/requires.txt +12 -0
- imolpro-0.2026.3/src/iMolpro.egg-info/scm_file_list.json +93 -0
- imolpro-0.2026.3/src/iMolpro.egg-info/scm_version.json +8 -0
- imolpro-0.2026.3/src/iMolpro.egg-info/top_level.txt +1 -0
- imolpro-0.2026.3/tests/EditFile_test.py +41 -0
- imolpro-0.2026.3/tests/test_backend.py +34 -0
- imolpro-0.2026.3/tests/test_cli_install.py +260 -0
- imolpro-0.2026.3/tests/test_utilities.py +110 -0
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
permissions:
|
|
2
|
+
contents: write
|
|
3
|
+
name: Clean releases
|
|
4
|
+
on:
|
|
5
|
+
push:
|
|
6
|
+
branches:
|
|
7
|
+
- 'none'
|
|
8
|
+
|
|
9
|
+
jobs:
|
|
10
|
+
clean:
|
|
11
|
+
name: Clean
|
|
12
|
+
runs-on: ubuntu-latest
|
|
13
|
+
steps:
|
|
14
|
+
- uses: actions/checkout@v3
|
|
15
|
+
- name: Delete old test releases
|
|
16
|
+
uses: dev-drprasad/delete-older-releases@v0.3.2
|
|
17
|
+
with:
|
|
18
|
+
# repo: <owner>/<repoName> # defaults to current repo
|
|
19
|
+
keep_latest: 1
|
|
20
|
+
# keep_min_download_counts: 1 # Optional parameters
|
|
21
|
+
# delete_expired_data: 10 # Optional parameters
|
|
22
|
+
delete_tag_pattern: '.*test*' # defaults to ""
|
|
23
|
+
delete_tags: true
|
|
24
|
+
env:
|
|
25
|
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
26
|
+
- name: Delete old pre-releases
|
|
27
|
+
uses: dev-drprasad/delete-older-releases@v0.3.2
|
|
28
|
+
with:
|
|
29
|
+
# repo: <owner>/<repoName> # defaults to current repo
|
|
30
|
+
keep_latest: 5
|
|
31
|
+
# keep_min_download_counts: 1 # Optional parameters
|
|
32
|
+
delete_expired_data: 2 # Optional parameters
|
|
33
|
+
delete_tag_pattern: '^0\.[0-9].*' # defaults to ""
|
|
34
|
+
env:
|
|
35
|
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
permissions:
|
|
2
|
+
contents: write
|
|
3
|
+
name: Deploy
|
|
4
|
+
on:
|
|
5
|
+
push:
|
|
6
|
+
tags:
|
|
7
|
+
- '*'
|
|
8
|
+
branches:
|
|
9
|
+
- '*candidate*'
|
|
10
|
+
jobs:
|
|
11
|
+
deploy:
|
|
12
|
+
name: Deploy on Unix
|
|
13
|
+
runs-on: ${{ matrix.os }}
|
|
14
|
+
timeout-minutes: 30
|
|
15
|
+
strategy:
|
|
16
|
+
matrix:
|
|
17
|
+
os: [ ubuntu-24.04, ubuntu-24.04-arm, macos-latest, macos-15-intel ]
|
|
18
|
+
include:
|
|
19
|
+
- os: macos-latest
|
|
20
|
+
mac: 1
|
|
21
|
+
- os: macos-15-intel
|
|
22
|
+
mac: 1
|
|
23
|
+
steps:
|
|
24
|
+
- uses: actions/checkout@v4
|
|
25
|
+
- uses: actions/setup-python@v5
|
|
26
|
+
with:
|
|
27
|
+
python-version: '3.13'
|
|
28
|
+
- uses: conda-incubator/setup-miniconda@v3
|
|
29
|
+
with:
|
|
30
|
+
activate-environment: iMolpro-github
|
|
31
|
+
- name: Setup temporary installer signing keychain
|
|
32
|
+
uses: apple-actions/import-codesign-certs@v4
|
|
33
|
+
if: ${{ matrix.mac }}
|
|
34
|
+
with:
|
|
35
|
+
p12-file-base64: ${{ secrets.CERTIFICATES_P12 }}
|
|
36
|
+
p12-password: ${{ secrets.CERTIFICATES_P12_PW }}
|
|
37
|
+
- name: Information on certificates
|
|
38
|
+
if: ${{ matrix.mac }}
|
|
39
|
+
run: |
|
|
40
|
+
security find-identity -v
|
|
41
|
+
security find-certificate -a
|
|
42
|
+
- name: Build
|
|
43
|
+
env:
|
|
44
|
+
MOLPRO_TEACH_URL: ${{ secrets.MOLPRO_TEACH_URL }}
|
|
45
|
+
run: |
|
|
46
|
+
if [ -z "${CONDA_EXE}" ]; then export CONDA_EXE=$(readlink -f $(which conda)) ; fi
|
|
47
|
+
conda config --set solver libmamba
|
|
48
|
+
. $(dirname $CONDA_EXE)/../etc/profile.d/conda.sh
|
|
49
|
+
conda activate iMolpro-github
|
|
50
|
+
bash build.sh
|
|
51
|
+
- name: Upload artifacts
|
|
52
|
+
uses: actions/upload-artifact@v4
|
|
53
|
+
if: ${{ ! startsWith(github.ref, 'refs/tags/') }}
|
|
54
|
+
with:
|
|
55
|
+
name: iMolpro-${{ matrix.os }}
|
|
56
|
+
path: |
|
|
57
|
+
dist/*bz2
|
|
58
|
+
dist/*dmg
|
|
59
|
+
dist/*pkg
|
|
60
|
+
dist/*.deb
|
|
61
|
+
dist/*.rpm
|
|
62
|
+
- name: Notarize
|
|
63
|
+
if: ${{ matrix.mac }}
|
|
64
|
+
run: |
|
|
65
|
+
for f in $(find dist -name '*.pkg' -o -name '*.dmg') ; do xcrun notarytool submit $f --apple-id ${{ secrets.APPLE_NOTARYTOOL_APPLE_ID }} --team-id ${{ secrets.APPLE_NOTARYTOOL_TEAM_ID }} --password ${{ secrets.APPLE_NOTARYTOOL_PASSWORD }} --wait ; done
|
|
66
|
+
for f in $(find dist -name '*.pkg' -o -name '*.dmg') ; do xcrun stapler staple $f ; done
|
|
67
|
+
- name: Release
|
|
68
|
+
uses: softprops/action-gh-release@v2
|
|
69
|
+
if: startsWith(github.ref, 'refs/tags/')
|
|
70
|
+
with:
|
|
71
|
+
files: |
|
|
72
|
+
dist/*bz2
|
|
73
|
+
dist/*dmg
|
|
74
|
+
dist/*pkg
|
|
75
|
+
dist/*.deb
|
|
76
|
+
dist/*.rpm
|
|
77
|
+
make_latest: false
|
|
78
|
+
prerelease: true
|
|
79
|
+
deploy-windows:
|
|
80
|
+
name: Deploy on Windows
|
|
81
|
+
runs-on: windows-latest
|
|
82
|
+
# if: startsWith(github.ref, 'refs/tags/')
|
|
83
|
+
steps:
|
|
84
|
+
- uses: actions/checkout@v4
|
|
85
|
+
- uses: actions/setup-python@v5
|
|
86
|
+
with:
|
|
87
|
+
python-version: '3.13'
|
|
88
|
+
- uses: conda-incubator/setup-miniconda@v3
|
|
89
|
+
with:
|
|
90
|
+
activate-environment: iMolpro-github
|
|
91
|
+
auto-activate-base: false
|
|
92
|
+
conda-remove-defaults: 'true'
|
|
93
|
+
- uses: milliewalky/setup-7-zip@v2
|
|
94
|
+
- name: Build
|
|
95
|
+
env:
|
|
96
|
+
MOLPRO_TEACH_URL: ${{ secrets.MOLPRO_TEACH_URL }}
|
|
97
|
+
shell: pwsh
|
|
98
|
+
run: .\build.ps1
|
|
99
|
+
- name: Azure Trusted Signing
|
|
100
|
+
uses: azure/trusted-signing-action@v0.4.0
|
|
101
|
+
with:
|
|
102
|
+
azure-tenant-id: ${{ secrets.AZURE_TENANT_ID }}
|
|
103
|
+
azure-client-id: ${{ secrets.AZURE_CLIENT_ID }}
|
|
104
|
+
azure-client-secret: ${{ secrets.AZURE_CLIENT_SECRET }}
|
|
105
|
+
endpoint: ${{ secrets.AZURE_ENDPOINT }}
|
|
106
|
+
trusted-signing-account-name: ${{ secrets.AZURE_CODE_SIGNING_NAME }}
|
|
107
|
+
certificate-profile-name: ${{ secrets.AZURE_CERT_PROFILE_NAME }}
|
|
108
|
+
files-folder: ${{ github.workspace }}
|
|
109
|
+
files-folder-filter: exe
|
|
110
|
+
file-digest: SHA256
|
|
111
|
+
timestamp-rfc3161: http://timestamp.acs.microsoft.com
|
|
112
|
+
timestamp-digest: SHA256
|
|
113
|
+
- name: Upload artifacts
|
|
114
|
+
uses: actions/upload-artifact@v4
|
|
115
|
+
if: ${{ ! startsWith(github.ref, 'refs/tags/') }}
|
|
116
|
+
with:
|
|
117
|
+
name: iMolpro-windows
|
|
118
|
+
path: |
|
|
119
|
+
iMolpro*.exe
|
|
120
|
+
- name: Release
|
|
121
|
+
uses: softprops/action-gh-release@v2
|
|
122
|
+
if: startsWith(github.ref, 'refs/tags/')
|
|
123
|
+
with:
|
|
124
|
+
files: |
|
|
125
|
+
iMolpro*.exe
|
|
126
|
+
make_latest: false
|
|
127
|
+
prerelease: true
|
|
128
|
+
|
|
129
|
+
- name: Delete old latest releases
|
|
130
|
+
uses: dev-drprasad/delete-older-releases@v0.3.2
|
|
131
|
+
with:
|
|
132
|
+
keep_latest: 1
|
|
133
|
+
delete_tag_pattern: 'latest*'
|
|
134
|
+
delete_tags: true
|
|
135
|
+
env:
|
|
136
|
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
name: Publish to PyPI
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
release:
|
|
5
|
+
types: [ published ]
|
|
6
|
+
workflow_dispatch:
|
|
7
|
+
|
|
8
|
+
jobs:
|
|
9
|
+
check-version-tag:
|
|
10
|
+
runs-on: ubuntu-latest
|
|
11
|
+
outputs:
|
|
12
|
+
is_version: ${{ steps.check.outputs.is_version }}
|
|
13
|
+
steps:
|
|
14
|
+
- name: Check tag looks like a version
|
|
15
|
+
id: check
|
|
16
|
+
run: |
|
|
17
|
+
tag="${{ github.event.release.tag_name }}"
|
|
18
|
+
if [ -z "$tag" ]; then
|
|
19
|
+
# workflow_dispatch has no release tag_name; allow it through
|
|
20
|
+
echo "is_version=true" >> "$GITHUB_OUTPUT"
|
|
21
|
+
elif [[ "$tag" =~ ^v?[0-9]+(\.[0-9]+)+$ ]]; then
|
|
22
|
+
echo "is_version=true" >> "$GITHUB_OUTPUT"
|
|
23
|
+
else
|
|
24
|
+
echo "Tag '$tag' doesn't look like a version tag, skipping publish."
|
|
25
|
+
echo "is_version=false" >> "$GITHUB_OUTPUT"
|
|
26
|
+
fi
|
|
27
|
+
|
|
28
|
+
build:
|
|
29
|
+
needs: check-version-tag
|
|
30
|
+
if: needs.check-version-tag.outputs.is_version == 'true'
|
|
31
|
+
runs-on: ubuntu-latest
|
|
32
|
+
steps:
|
|
33
|
+
- uses: actions/checkout@v4
|
|
34
|
+
with:
|
|
35
|
+
fetch-depth: 0 # needed so setuptools_scm can see tags
|
|
36
|
+
|
|
37
|
+
- uses: actions/setup-python@v5
|
|
38
|
+
with:
|
|
39
|
+
python-version: "3.12"
|
|
40
|
+
|
|
41
|
+
- name: Install build tool
|
|
42
|
+
run: python -m pip install --upgrade build
|
|
43
|
+
|
|
44
|
+
- name: Build sdist and wheel
|
|
45
|
+
run: python -m build
|
|
46
|
+
|
|
47
|
+
- uses: actions/upload-artifact@v4
|
|
48
|
+
with:
|
|
49
|
+
name: dist
|
|
50
|
+
path: dist/
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
publish-pypi:
|
|
54
|
+
needs: build
|
|
55
|
+
runs-on: ubuntu-latest
|
|
56
|
+
environment:
|
|
57
|
+
name: pypi
|
|
58
|
+
url: https://pypi.org/p/imolpro
|
|
59
|
+
permissions:
|
|
60
|
+
id-token: write # required for OIDC trusted publishing
|
|
61
|
+
steps:
|
|
62
|
+
- uses: actions/download-artifact@v4
|
|
63
|
+
with:
|
|
64
|
+
name: dist
|
|
65
|
+
path: dist/
|
|
66
|
+
- uses: pypa/gh-action-pypi-publish@release/v1
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
name: Tag latest
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches:
|
|
6
|
+
- 'master'
|
|
7
|
+
|
|
8
|
+
jobs:
|
|
9
|
+
tag:
|
|
10
|
+
runs-on: ubuntu-latest
|
|
11
|
+
permissions:
|
|
12
|
+
contents: write
|
|
13
|
+
|
|
14
|
+
steps:
|
|
15
|
+
- name: Checkout branch "master"
|
|
16
|
+
uses: actions/checkout@v4
|
|
17
|
+
with:
|
|
18
|
+
ref: 'master'
|
|
19
|
+
token: ${{ secrets.PAT }}
|
|
20
|
+
- name: tag
|
|
21
|
+
id: tag
|
|
22
|
+
run: |
|
|
23
|
+
sha_short=$(git rev-parse --short HEAD)
|
|
24
|
+
date=$(date +'%Y_%m_%d')
|
|
25
|
+
tag=latest_${date}_${sha_short}
|
|
26
|
+
echo "tag=${tag}" >> $GITHUB_OUTPUT
|
|
27
|
+
git tag ${tag}
|
|
28
|
+
git push --tags
|
|
29
|
+
|
|
30
|
+
outputs:
|
|
31
|
+
tag_name: ${{ steps.tag.outputs.tag }}
|
|
32
|
+
|
|
33
|
+
clean:
|
|
34
|
+
name: Clean obsolete latest
|
|
35
|
+
runs-on: ubuntu-latest
|
|
36
|
+
permissions: write-all
|
|
37
|
+
steps:
|
|
38
|
+
- uses: actions/checkout@v3
|
|
39
|
+
- name: Delete old latest releases
|
|
40
|
+
uses: dev-drprasad/delete-older-releases@v0.3.2
|
|
41
|
+
with:
|
|
42
|
+
keep_latest: 1
|
|
43
|
+
delete_tag_pattern: 'latest*'
|
|
44
|
+
delete_tags: true
|
|
45
|
+
env:
|
|
46
|
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
dist/
|
|
2
|
+
*.spec
|
|
3
|
+
*.spec-e
|
|
4
|
+
build/
|
|
5
|
+
molpro-*sh.gz
|
|
6
|
+
.idea/
|
|
7
|
+
__pycache__/
|
|
8
|
+
.DS_Store
|
|
9
|
+
.ipynb_checkpoints
|
|
10
|
+
.ninja.*
|
|
11
|
+
*.molpro
|
|
12
|
+
test.html
|
|
13
|
+
test.inp
|
|
14
|
+
_pyinstaller_entry.py
|
|
15
|
+
*.egg-info/
|
|
16
|
+
playground
|
|
17
|
+
Package-license.pdf
|
|
18
|
+
Package-license.rtf
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
FROM continuumio/miniconda3:latest
|
|
2
|
+
RUN apt update
|
|
3
|
+
COPY requirements.txt /root
|
|
4
|
+
RUN conda install -y -c conda-forge --file=/root/requirements.txt pytest-qt
|
|
5
|
+
RUN apt-get update && apt-get install libgl1-mesa-glx -y ruby binutils librpmbuild9 rpm
|
|
6
|
+
RUN gem install fpm
|
imolpro-0.2026.3/ENV
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
molpro_version=2026.1.0
|
imolpro-0.2026.3/INSTALL
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
To run directly from the Python source,
|
|
2
|
+
|
|
3
|
+
conda install -c conda-forge -y --file=requirements.txt
|
|
4
|
+
python iMolpro.py
|
|
5
|
+
|
|
6
|
+
To build a free-standing binary suitable for distribution and subsequent use with no Conda environment,
|
|
7
|
+
sh ./build.sh
|
|
8
|
+
with the resulting package going to the dist/ directory.
|