pysfi 0.1.7__py3-none-any.whl → 0.1.11__py3-none-any.whl
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.
- {pysfi-0.1.7.dist-info → pysfi-0.1.11.dist-info}/METADATA +11 -9
- pysfi-0.1.11.dist-info/RECORD +60 -0
- pysfi-0.1.11.dist-info/entry_points.txt +28 -0
- sfi/__init__.py +1 -1
- sfi/alarmclock/alarmclock.py +40 -40
- sfi/bumpversion/__init__.py +1 -1
- sfi/cleanbuild/cleanbuild.py +155 -0
- sfi/condasetup/condasetup.py +116 -0
- sfi/docscan/__init__.py +1 -1
- sfi/docscan/docscan.py +407 -103
- sfi/docscan/docscan_gui.py +1282 -596
- sfi/docscan/lang/eng.py +152 -0
- sfi/docscan/lang/zhcn.py +170 -0
- sfi/filedate/filedate.py +185 -112
- sfi/gittool/__init__.py +2 -0
- sfi/gittool/gittool.py +401 -0
- sfi/llmclient/llmclient.py +592 -0
- sfi/llmquantize/llmquantize.py +480 -0
- sfi/llmserver/llmserver.py +335 -0
- sfi/makepython/makepython.py +31 -30
- sfi/pdfsplit/pdfsplit.py +173 -173
- sfi/pyarchive/pyarchive.py +418 -0
- sfi/pyembedinstall/pyembedinstall.py +629 -0
- sfi/pylibpack/__init__.py +0 -0
- sfi/pylibpack/pylibpack.py +1457 -0
- sfi/pylibpack/rules/numpy.json +22 -0
- sfi/pylibpack/rules/pymupdf.json +10 -0
- sfi/pylibpack/rules/pyqt5.json +19 -0
- sfi/pylibpack/rules/pyside2.json +23 -0
- sfi/pylibpack/rules/scipy.json +23 -0
- sfi/pylibpack/rules/shiboken2.json +24 -0
- sfi/pyloadergen/pyloadergen.py +512 -227
- sfi/pypack/__init__.py +0 -0
- sfi/pypack/pypack.py +1142 -0
- sfi/pyprojectparse/__init__.py +0 -0
- sfi/pyprojectparse/pyprojectparse.py +500 -0
- sfi/pysourcepack/pysourcepack.py +308 -0
- sfi/quizbase/__init__.py +0 -0
- sfi/quizbase/quizbase.py +828 -0
- sfi/quizbase/quizbase_gui.py +987 -0
- sfi/regexvalidate/__init__.py +0 -0
- sfi/regexvalidate/regex_help.html +284 -0
- sfi/regexvalidate/regexvalidate.py +468 -0
- sfi/taskkill/taskkill.py +0 -2
- sfi/workflowengine/__init__.py +0 -0
- sfi/workflowengine/workflowengine.py +444 -0
- pysfi-0.1.7.dist-info/RECORD +0 -31
- pysfi-0.1.7.dist-info/entry_points.txt +0 -15
- sfi/embedinstall/embedinstall.py +0 -418
- sfi/projectparse/projectparse.py +0 -152
- sfi/pypacker/fspacker.py +0 -91
- {pysfi-0.1.7.dist-info → pysfi-0.1.11.dist-info}/WHEEL +0 -0
- /sfi/{embedinstall → docscan/lang}/__init__.py +0 -0
- /sfi/{projectparse → llmquantize}/__init__.py +0 -0
- /sfi/{pypacker → pyembedinstall}/__init__.py +0 -0
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
{
|
|
2
|
+
"library_name": "numpy",
|
|
3
|
+
"exclude_patterns": [
|
|
4
|
+
".*tests?.*",
|
|
5
|
+
".*test_.*",
|
|
6
|
+
".*_test.*",
|
|
7
|
+
".*conftest\\.py",
|
|
8
|
+
".*bench.*",
|
|
9
|
+
".*f2py.*",
|
|
10
|
+
".*distutils.*"
|
|
11
|
+
],
|
|
12
|
+
"include_patterns": [
|
|
13
|
+
".*\\.pyd$",
|
|
14
|
+
".*core.*\\.pyd$",
|
|
15
|
+
".*linalg.*\\.pyd$",
|
|
16
|
+
".*fft.*\\.pyd$",
|
|
17
|
+
".*random.*\\.pyd$",
|
|
18
|
+
".*__init__\\.py$",
|
|
19
|
+
".*\\.so$",
|
|
20
|
+
".*\\.pyi$"
|
|
21
|
+
]
|
|
22
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
{
|
|
2
|
+
"library_name": "pyqt5",
|
|
3
|
+
"exclude_patterns": [
|
|
4
|
+
".*examples.*",
|
|
5
|
+
".*designer.*",
|
|
6
|
+
".*qml.*",
|
|
7
|
+
".*translations.*",
|
|
8
|
+
".*pyqtwebengine.*",
|
|
9
|
+
".*opengl32sw\\.dll",
|
|
10
|
+
".*d3dcompiler.*\\.dll"
|
|
11
|
+
],
|
|
12
|
+
"include_patterns": [
|
|
13
|
+
".*\\.pyd$",
|
|
14
|
+
".*Qt\\d+.*\\.dll$",
|
|
15
|
+
".*python.*\\.dll$",
|
|
16
|
+
".*pyqt5.*\\.py$",
|
|
17
|
+
".*sip\\.pyd$"
|
|
18
|
+
]
|
|
19
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{
|
|
2
|
+
"library_name": "pyside2",
|
|
3
|
+
"exclude_patterns": [
|
|
4
|
+
".*examples.*",
|
|
5
|
+
".*designer.*",
|
|
6
|
+
".*scripts.*",
|
|
7
|
+
".*support.*",
|
|
8
|
+
".*translations.*",
|
|
9
|
+
".*qtwebengine.*",
|
|
10
|
+
".*opengl32sw\\.dll",
|
|
11
|
+
".*d3dcompiler.*\\.dll",
|
|
12
|
+
".*libegl\\.dll",
|
|
13
|
+
".*libglesv2\\.dll"
|
|
14
|
+
],
|
|
15
|
+
"include_patterns": [
|
|
16
|
+
".*__init__\\.py$",
|
|
17
|
+
".*qt\\d?(core|gui|widgets|network|qml)\\.(pyd|dll|so)$",
|
|
18
|
+
".*plugins/iconengines/qsvgicon\\.dll$",
|
|
19
|
+
".*plugins/imageformats/.*\\.dll$",
|
|
20
|
+
".*plugins/platforms/.*\\.dll$",
|
|
21
|
+
".*\\.abi\\d+.*\\.(dll|so)$"
|
|
22
|
+
]
|
|
23
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{
|
|
2
|
+
"library_name": "scipy",
|
|
3
|
+
"exclude_patterns": [
|
|
4
|
+
".*tests?.*",
|
|
5
|
+
".*test_.*",
|
|
6
|
+
".*_test.*",
|
|
7
|
+
".*conftest\\.py",
|
|
8
|
+
".*bench.*",
|
|
9
|
+
".*spatial\\.ckdtree.*",
|
|
10
|
+
".*linalg\\.lapack_lite.*"
|
|
11
|
+
],
|
|
12
|
+
"include_patterns": [
|
|
13
|
+
".*\\.pyd$",
|
|
14
|
+
".*__init__\\.py$",
|
|
15
|
+
".*constants.*\\.py$",
|
|
16
|
+
".*special.*\\.pyd$",
|
|
17
|
+
".*linalg.*\\.pyd$",
|
|
18
|
+
".*sparse.*\\.pyd$",
|
|
19
|
+
".*interpolate.*\\.pyd$",
|
|
20
|
+
".*optimize.*\\.pyd$",
|
|
21
|
+
".*integrate.*\\.pyd$"
|
|
22
|
+
]
|
|
23
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"library_name": "shiboken2",
|
|
3
|
+
"exclude_patterns": [
|
|
4
|
+
".*examples.*",
|
|
5
|
+
".*designer.*",
|
|
6
|
+
".*scripts.*",
|
|
7
|
+
".*support.*",
|
|
8
|
+
".*translations.*",
|
|
9
|
+
".*test.*",
|
|
10
|
+
".*doc.*",
|
|
11
|
+
"_git_shiboken_module_version.py",
|
|
12
|
+
"_config.py",
|
|
13
|
+
".*opengl32sw\\.dll",
|
|
14
|
+
".*d3dcompiler.*\\.dll",
|
|
15
|
+
".*libegl\\.dll",
|
|
16
|
+
".*libglesv2\\.dll"
|
|
17
|
+
],
|
|
18
|
+
"include_patterns": [
|
|
19
|
+
".*__init__\\.py$",
|
|
20
|
+
".*shiboken2.*\\.(pyd|dll|so)$",
|
|
21
|
+
".*libshiboken.*\\.(pyd|dll|so)$",
|
|
22
|
+
".*\\.abi\\d+.*\\.(dll|so)$"
|
|
23
|
+
]
|
|
24
|
+
}
|