fourdst 0.10.4__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.
- fourdst-0.10.4/.gitignore +114 -0
- fourdst-0.10.4/LICENSE.txt +674 -0
- fourdst-0.10.4/PKG-INFO +712 -0
- fourdst-0.10.4/assets/bundle/fourdst_bundle_icon.svg +158 -0
- fourdst-0.10.4/assets/logo/logo.png +0 -0
- fourdst-0.10.4/assets/logo/logo.svg +741 -0
- fourdst-0.10.4/assets/opat/fourdst_opat_icon.svg +428 -0
- fourdst-0.10.4/assets/toolkit/appicon/toolkitIcon.png +0 -0
- fourdst-0.10.4/assets/toolkit/appicon/toolkitIcon.svg +2396 -0
- fourdst-0.10.4/build-config/libcomposition/meson.build +16 -0
- fourdst-0.10.4/build-config/libconfig/meson.build +8 -0
- fourdst-0.10.4/build-config/libconstants/meson.build +10 -0
- fourdst-0.10.4/build-config/liblogging/meson.build +14 -0
- fourdst-0.10.4/build-config/libplugin/meson.build +10 -0
- fourdst-0.10.4/build-config/meson.build +19 -0
- fourdst-0.10.4/build-config/pybind/meson.build +3 -0
- fourdst-0.10.4/build-python/fix_rpaths.py +95 -0
- fourdst-0.10.4/build-python/import_debug.sh +48 -0
- fourdst-0.10.4/build-python/meson.build +150 -0
- fourdst-0.10.4/cli.md +343 -0
- fourdst-0.10.4/electron/LICENSE.txt +674 -0
- fourdst-0.10.4/electron/PACKAGING_SOLUTION_SUMMARY.md +256 -0
- fourdst-0.10.4/electron/PKG_INSTALLER_GUIDE.md +242 -0
- fourdst-0.10.4/electron/bridge.py +149 -0
- fourdst-0.10.4/electron/build-backend.js +104 -0
- fourdst-0.10.4/electron/check-runtime-deps.js +329 -0
- fourdst-0.10.4/electron/debug-packaged-app.js +142 -0
- fourdst-0.10.4/electron/docs.json +38 -0
- fourdst-0.10.4/electron/entitlements.mac.plist +45 -0
- fourdst-0.10.4/electron/fourdst-backend.spec +118 -0
- fourdst-0.10.4/electron/generate-icons.js +329 -0
- fourdst-0.10.4/electron/icons/app-icon.icns +0 -0
- fourdst-0.10.4/electron/icons/fbundle-icon.icns +0 -0
- fourdst-0.10.4/electron/icons/opat-icon.icns +0 -0
- fourdst-0.10.4/electron/index.html +1000 -0
- fourdst-0.10.4/electron/installer-resources/conclusion.html +123 -0
- fourdst-0.10.4/electron/installer-resources/welcome.html +125 -0
- fourdst-0.10.4/electron/installer-scripts/postinstall +75 -0
- fourdst-0.10.4/electron/main/app-lifecycle.js +183 -0
- fourdst-0.10.4/electron/main/backend-bridge.js +164 -0
- fourdst-0.10.4/electron/main/file-dialogs.js +77 -0
- fourdst-0.10.4/electron/main/ipc-handlers.js +322 -0
- fourdst-0.10.4/electron/main-refactored.js +36 -0
- fourdst-0.10.4/electron/opatParser.js +375 -0
- fourdst-0.10.4/electron/package-lock.json +3877 -0
- fourdst-0.10.4/electron/package.json +180 -0
- fourdst-0.10.4/electron/refresh-macos-icons.js +209 -0
- fourdst-0.10.4/electron/renderer/bundle-operations.js +265 -0
- fourdst-0.10.4/electron/renderer/docs-handler.js +370 -0
- fourdst-0.10.4/electron/renderer/dom-manager.js +261 -0
- fourdst-0.10.4/electron/renderer/event-handlers.js +558 -0
- fourdst-0.10.4/electron/renderer/fill-workflow.js +450 -0
- fourdst-0.10.4/electron/renderer/key-operations.js +509 -0
- fourdst-0.10.4/electron/renderer/opat-handler.js +607 -0
- fourdst-0.10.4/electron/renderer/opat-plotting.js +833 -0
- fourdst-0.10.4/electron/renderer/plugin-operations.js +509 -0
- fourdst-0.10.4/electron/renderer/state-manager.js +126 -0
- fourdst-0.10.4/electron/renderer/ui-components.js +192 -0
- fourdst-0.10.4/electron/renderer-refactored.js +108 -0
- fourdst-0.10.4/electron/styles.css +3815 -0
- fourdst-0.10.4/electron/test-file-associations.js +249 -0
- fourdst-0.10.4/electron/toolkitIcon.png +0 -0
- fourdst-0.10.4/electron/validate-dependencies.js +344 -0
- fourdst-0.10.4/meson.build +20 -0
- fourdst-0.10.4/meson_options.txt +10 -0
- fourdst-0.10.4/pip_install_mac_patch.sh +111 -0
- fourdst-0.10.4/pyproject.toml +52 -0
- fourdst-0.10.4/readme.md +22 -0
- fourdst-0.10.4/src-pybind/bindings.cpp +26 -0
- fourdst-0.10.4/src-pybind/composition/bindings.cpp +522 -0
- fourdst-0.10.4/src-pybind/composition/bindings.h +8 -0
- fourdst-0.10.4/src-pybind/composition/meson.build +17 -0
- fourdst-0.10.4/src-pybind/config/bindings.cpp +17 -0
- fourdst-0.10.4/src-pybind/config/bindings.h +26 -0
- fourdst-0.10.4/src-pybind/config/meson.build +17 -0
- fourdst-0.10.4/src-pybind/constants/bindings.cpp +54 -0
- fourdst-0.10.4/src-pybind/constants/bindings.h +5 -0
- fourdst-0.10.4/src-pybind/constants/meson.build +17 -0
- fourdst-0.10.4/src-pybind/fourdst/__init__.py +64 -0
- fourdst-0.10.4/src-pybind/fourdst/__init__.pyi +9 -0
- fourdst-0.10.4/src-pybind/fourdst/_phys/__init__.pyi +10 -0
- fourdst-0.10.4/src-pybind/fourdst/_phys/atomic.pyi +3619 -0
- fourdst-0.10.4/src-pybind/fourdst/_phys/composition/__init__.pyi +215 -0
- fourdst-0.10.4/src-pybind/fourdst/_phys/composition/utils.pyi +44 -0
- fourdst-0.10.4/src-pybind/fourdst/_phys/config.pyi +40 -0
- fourdst-0.10.4/src-pybind/fourdst/_phys/constants.pyi +46 -0
- fourdst-0.10.4/src-pybind/fourdst/_phys/exceptions.pyi +15 -0
- fourdst-0.10.4/src-pybind/fourdst/cli/__init__.py +0 -0
- fourdst-0.10.4/src-pybind/fourdst/cli/bundle/__init__.py +0 -0
- fourdst-0.10.4/src-pybind/fourdst/cli/bundle/clear.py +23 -0
- fourdst-0.10.4/src-pybind/fourdst/cli/bundle/create.py +37 -0
- fourdst-0.10.4/src-pybind/fourdst/cli/bundle/diff.py +77 -0
- fourdst-0.10.4/src-pybind/fourdst/cli/bundle/fill.py +190 -0
- fourdst-0.10.4/src-pybind/fourdst/cli/bundle/inspect.py +119 -0
- fourdst-0.10.4/src-pybind/fourdst/cli/bundle/sign.py +26 -0
- fourdst-0.10.4/src-pybind/fourdst/cli/bundle/validate.py +80 -0
- fourdst-0.10.4/src-pybind/fourdst/cli/cache/__init__.py +0 -0
- fourdst-0.10.4/src-pybind/fourdst/cli/cache/clear.py +20 -0
- fourdst-0.10.4/src-pybind/fourdst/cli/common/__init__.py +0 -0
- fourdst-0.10.4/src-pybind/fourdst/cli/common/config.py +11 -0
- fourdst-0.10.4/src-pybind/fourdst/cli/common/templates.py +129 -0
- fourdst-0.10.4/src-pybind/fourdst/cli/common/utils.py +212 -0
- fourdst-0.10.4/src-pybind/fourdst/cli/keys/__init__.py +0 -0
- fourdst-0.10.4/src-pybind/fourdst/cli/keys/add.py +20 -0
- fourdst-0.10.4/src-pybind/fourdst/cli/keys/generate.py +38 -0
- fourdst-0.10.4/src-pybind/fourdst/cli/keys/list.py +25 -0
- fourdst-0.10.4/src-pybind/fourdst/cli/keys/remote/__init__.py +1 -0
- fourdst-0.10.4/src-pybind/fourdst/cli/keys/remote/add.py +16 -0
- fourdst-0.10.4/src-pybind/fourdst/cli/keys/remote/list.py +24 -0
- fourdst-0.10.4/src-pybind/fourdst/cli/keys/remote/remove.py +15 -0
- fourdst-0.10.4/src-pybind/fourdst/cli/keys/remove.py +53 -0
- fourdst-0.10.4/src-pybind/fourdst/cli/keys/sync.py +52 -0
- fourdst-0.10.4/src-pybind/fourdst/cli/main.py +98 -0
- fourdst-0.10.4/src-pybind/fourdst/cli/plugin/__init__.py +0 -0
- fourdst-0.10.4/src-pybind/fourdst/cli/plugin/diff.py +59 -0
- fourdst-0.10.4/src-pybind/fourdst/cli/plugin/extract.py +39 -0
- fourdst-0.10.4/src-pybind/fourdst/cli/plugin/init.py +78 -0
- fourdst-0.10.4/src-pybind/fourdst/cli/plugin/pack.py +57 -0
- fourdst-0.10.4/src-pybind/fourdst/cli/plugin/validate.py +63 -0
- fourdst-0.10.4/src-pybind/fourdst/cli/templates/meson.build.in +19 -0
- fourdst-0.10.4/src-pybind/fourdst/cli/templates/plugin.cpp.in +16 -0
- fourdst-0.10.4/src-pybind/fourdst/core/__init__.py +0 -0
- fourdst-0.10.4/src-pybind/fourdst/core/build.py +222 -0
- fourdst-0.10.4/src-pybind/fourdst/core/bundle.py +1099 -0
- fourdst-0.10.4/src-pybind/fourdst/core/config.py +21 -0
- fourdst-0.10.4/src-pybind/fourdst/core/keys.py +746 -0
- fourdst-0.10.4/src-pybind/fourdst/core/platform.py +363 -0
- fourdst-0.10.4/src-pybind/fourdst/core/plugin.py +649 -0
- fourdst-0.10.4/src-pybind/fourdst/core/utils.py +47 -0
- fourdst-0.10.4/subprojects/gtest.wrap +16 -0
- fourdst-0.10.4/subprojects/libcomposition.wrap +4 -0
- fourdst-0.10.4/subprojects/libconfig.wrap +4 -0
- fourdst-0.10.4/subprojects/libconstants.wrap +4 -0
- fourdst-0.10.4/subprojects/liblogging.wrap +4 -0
- fourdst-0.10.4/subprojects/libplugin.wrap +4 -0
- fourdst-0.10.4/subprojects/pybind11.wrap +13 -0
- fourdst-0.10.4/utils/wheels/build-wheels-linux_aarch64.sh +51 -0
- fourdst-0.10.4/utils/wheels/build-wheels-linux_x86_64.sh +51 -0
- fourdst-0.10.4/utils/wheels/build-wheels-macos_aarch64.sh +74 -0
- fourdst-0.10.4/utils/wheels/installPyEnvVersions.sh +14 -0
- fourdst-0.10.4/utils/wheels/readme.md +42 -0
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
# Python
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[cod]
|
|
4
|
+
*.pyo
|
|
5
|
+
*.pyd
|
|
6
|
+
*.env
|
|
7
|
+
*.venv
|
|
8
|
+
env/
|
|
9
|
+
venv/
|
|
10
|
+
ENV/
|
|
11
|
+
ENV.bak/
|
|
12
|
+
*.egg-info/
|
|
13
|
+
dist/
|
|
14
|
+
build/
|
|
15
|
+
*.egg
|
|
16
|
+
|
|
17
|
+
# C and C++ (using Meson)
|
|
18
|
+
build/
|
|
19
|
+
*.o
|
|
20
|
+
*.a
|
|
21
|
+
*.so
|
|
22
|
+
*.d
|
|
23
|
+
*.dSYM/
|
|
24
|
+
*.exe
|
|
25
|
+
*.out
|
|
26
|
+
*.obj
|
|
27
|
+
*.dll
|
|
28
|
+
*.lib
|
|
29
|
+
*.pdb
|
|
30
|
+
*.exp
|
|
31
|
+
*.log
|
|
32
|
+
*.stackdump
|
|
33
|
+
|
|
34
|
+
# Fortran
|
|
35
|
+
*.mod
|
|
36
|
+
*.o
|
|
37
|
+
*.a
|
|
38
|
+
*.so
|
|
39
|
+
*.exe
|
|
40
|
+
*.out
|
|
41
|
+
|
|
42
|
+
# Doxygen
|
|
43
|
+
latex/
|
|
44
|
+
xml/
|
|
45
|
+
man/
|
|
46
|
+
rtf/
|
|
47
|
+
tags
|
|
48
|
+
|
|
49
|
+
## Misc
|
|
50
|
+
*.swp
|
|
51
|
+
*._DS_Store
|
|
52
|
+
*.DS_Store
|
|
53
|
+
*.bak
|
|
54
|
+
*.tmp
|
|
55
|
+
*.log
|
|
56
|
+
*.cache
|
|
57
|
+
*.private
|
|
58
|
+
*.private/
|
|
59
|
+
|
|
60
|
+
subprojects/mfem/
|
|
61
|
+
subprojects/tetgen/
|
|
62
|
+
subprojects/yaml-cpp/
|
|
63
|
+
subprojects/quill/
|
|
64
|
+
subprojects/googletest-*/
|
|
65
|
+
subprojects/opat-core/
|
|
66
|
+
subprojects/pybind11*/
|
|
67
|
+
subprojects/packagecache/
|
|
68
|
+
subprojects/hypre/
|
|
69
|
+
subprojects/qhull/
|
|
70
|
+
subprojects/cppad/
|
|
71
|
+
subprojects/libcomposition/
|
|
72
|
+
subprojects/libconfig/
|
|
73
|
+
subprojects/libconstants/
|
|
74
|
+
subprojects/liblogging/
|
|
75
|
+
subprojects/eigen-*/
|
|
76
|
+
!subprojects/pybind11.wrap
|
|
77
|
+
subprojects/libplugin/
|
|
78
|
+
subprojects/minizip-ng-*
|
|
79
|
+
subprojects/.wraplock
|
|
80
|
+
subprojects/openssl-*
|
|
81
|
+
subprojects/glaze/
|
|
82
|
+
subprojects/tomlplusplus-*/
|
|
83
|
+
subprojects/CLI11-*/
|
|
84
|
+
|
|
85
|
+
*.csv
|
|
86
|
+
*.dot
|
|
87
|
+
|
|
88
|
+
qhull.wrap
|
|
89
|
+
quill.wrap
|
|
90
|
+
yaml-cpp.wrap
|
|
91
|
+
minizip-ng.wrap
|
|
92
|
+
openssl.wrap
|
|
93
|
+
glaze.wrap
|
|
94
|
+
tomlplusplus.wrap
|
|
95
|
+
cli11.wrap
|
|
96
|
+
|
|
97
|
+
.vscode/
|
|
98
|
+
|
|
99
|
+
*.log
|
|
100
|
+
mpi-install-log.txt
|
|
101
|
+
|
|
102
|
+
output/
|
|
103
|
+
|
|
104
|
+
.boost_installed
|
|
105
|
+
4DSSE_logs/
|
|
106
|
+
.last_build_flags
|
|
107
|
+
|
|
108
|
+
.idea/
|
|
109
|
+
|
|
110
|
+
scratch/
|
|
111
|
+
|
|
112
|
+
node_modules/
|
|
113
|
+
|
|
114
|
+
*.whl
|