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.
Files changed (55) hide show
  1. {pysfi-0.1.7.dist-info → pysfi-0.1.11.dist-info}/METADATA +11 -9
  2. pysfi-0.1.11.dist-info/RECORD +60 -0
  3. pysfi-0.1.11.dist-info/entry_points.txt +28 -0
  4. sfi/__init__.py +1 -1
  5. sfi/alarmclock/alarmclock.py +40 -40
  6. sfi/bumpversion/__init__.py +1 -1
  7. sfi/cleanbuild/cleanbuild.py +155 -0
  8. sfi/condasetup/condasetup.py +116 -0
  9. sfi/docscan/__init__.py +1 -1
  10. sfi/docscan/docscan.py +407 -103
  11. sfi/docscan/docscan_gui.py +1282 -596
  12. sfi/docscan/lang/eng.py +152 -0
  13. sfi/docscan/lang/zhcn.py +170 -0
  14. sfi/filedate/filedate.py +185 -112
  15. sfi/gittool/__init__.py +2 -0
  16. sfi/gittool/gittool.py +401 -0
  17. sfi/llmclient/llmclient.py +592 -0
  18. sfi/llmquantize/llmquantize.py +480 -0
  19. sfi/llmserver/llmserver.py +335 -0
  20. sfi/makepython/makepython.py +31 -30
  21. sfi/pdfsplit/pdfsplit.py +173 -173
  22. sfi/pyarchive/pyarchive.py +418 -0
  23. sfi/pyembedinstall/pyembedinstall.py +629 -0
  24. sfi/pylibpack/__init__.py +0 -0
  25. sfi/pylibpack/pylibpack.py +1457 -0
  26. sfi/pylibpack/rules/numpy.json +22 -0
  27. sfi/pylibpack/rules/pymupdf.json +10 -0
  28. sfi/pylibpack/rules/pyqt5.json +19 -0
  29. sfi/pylibpack/rules/pyside2.json +23 -0
  30. sfi/pylibpack/rules/scipy.json +23 -0
  31. sfi/pylibpack/rules/shiboken2.json +24 -0
  32. sfi/pyloadergen/pyloadergen.py +512 -227
  33. sfi/pypack/__init__.py +0 -0
  34. sfi/pypack/pypack.py +1142 -0
  35. sfi/pyprojectparse/__init__.py +0 -0
  36. sfi/pyprojectparse/pyprojectparse.py +500 -0
  37. sfi/pysourcepack/pysourcepack.py +308 -0
  38. sfi/quizbase/__init__.py +0 -0
  39. sfi/quizbase/quizbase.py +828 -0
  40. sfi/quizbase/quizbase_gui.py +987 -0
  41. sfi/regexvalidate/__init__.py +0 -0
  42. sfi/regexvalidate/regex_help.html +284 -0
  43. sfi/regexvalidate/regexvalidate.py +468 -0
  44. sfi/taskkill/taskkill.py +0 -2
  45. sfi/workflowengine/__init__.py +0 -0
  46. sfi/workflowengine/workflowengine.py +444 -0
  47. pysfi-0.1.7.dist-info/RECORD +0 -31
  48. pysfi-0.1.7.dist-info/entry_points.txt +0 -15
  49. sfi/embedinstall/embedinstall.py +0 -418
  50. sfi/projectparse/projectparse.py +0 -152
  51. sfi/pypacker/fspacker.py +0 -91
  52. {pysfi-0.1.7.dist-info → pysfi-0.1.11.dist-info}/WHEEL +0 -0
  53. /sfi/{embedinstall → docscan/lang}/__init__.py +0 -0
  54. /sfi/{projectparse → llmquantize}/__init__.py +0 -0
  55. /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,10 @@
1
+ {
2
+ "library_name": "pymupdf",
3
+ "exclude_patterns": [
4
+ ".*mupdf-devel.*"
5
+ ],
6
+ "include_patterns": [
7
+ ".*\\.py$",
8
+ ".*\\.(dll|pyd|so)$"
9
+ ]
10
+ }
@@ -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
+ }