pysfi 0.1.4__py3-none-any.whl → 0.1.6__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.
@@ -1,9 +1,13 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pysfi
3
- Version: 0.1.4
3
+ Version: 0.1.6
4
4
  Summary: Single File commands for Interactive python.
5
5
  Requires-Python: >=3.8
6
6
  Requires-Dist: tomli>=2.4.0; python_version < '3.11'
7
+ Provides-Extra: all
8
+ Requires-Dist: pymupdf>=1.24.11; extra == 'all'
9
+ Provides-Extra: office
10
+ Requires-Dist: pymupdf>=1.24.11; extra == 'office'
7
11
  Description-Content-Type: text/markdown
8
12
 
9
13
  # pysfi
@@ -0,0 +1,21 @@
1
+ sfi/__init__.py,sha256=VaGTEot5vjPh1rcxcuYg_KnK58mt8BHly0KnV5-55lk,74
2
+ sfi/alarmclock/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
+ sfi/alarmclock/alarmclock.py,sha256=65G8OyTGpe4oQ2SFerQG1N9PVJ4KxO7WzgsTxpGm4O0,12509
4
+ sfi/bumpversion/__init__.py,sha256=BMI9LlfdLgZoj-xXYkjzPj2VTwci2pT0umrEyAjXUgs,85
5
+ sfi/bumpversion/bumpversion.py,sha256=HOyHLaE0sZajrlcVZ8hsim8mPjz77qwQVSo6aIzjMXE,20735
6
+ sfi/embedinstall/embedinstall.py,sha256=N5EbTDdX4bE3W0qHGAwAUuepqFr0sbdZuPI3KWrtuUY,14936
7
+ sfi/filedate/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
+ sfi/filedate/filedate.py,sha256=DpVp26lumE_Lz_4TgqUEX8IxtK3Y6yHSEFV8qJyegyk,3645
9
+ sfi/makepython/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
+ sfi/makepython/makepython.py,sha256=YKBXTjvugKN_TlFfx-vOudpkZy45VhO0vq89fxo6hFU,10583
11
+ sfi/pdfsplit/pdfsplit.py,sha256=9M1o9QjTxAAa0DHbTTbDeap2evcazWlb98u80hzJmx0,6004
12
+ sfi/projectparse/projectparse.py,sha256=Ojg-z4lZEtjEBpJYWyznTgL307N45AxlQKnRkEH0P70,5525
13
+ sfi/pyloadergen/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
14
+ sfi/pyloadergen/pyloadergen.py,sha256=Erzz1PwrEQcDSCxXG-4DZ-CZavDt6MNv7k3nET5IB9U,32423
15
+ sfi/pypacker/fspacker.py,sha256=3tlS7qiWoH_kOzsp9eSWsQ-SY7-bSTugwfB-HIL69iE,3238
16
+ sfi/taskkill/taskkill.py,sha256=6Aw4afmgfLZcQnvgG_38A1VrwazDrnNdOmY1l4kr0lc,7758
17
+ sfi/which/which.py,sha256=zVIAwZA-pGGngxkkwZ6IxDX3ozVHg7cLSYwYO9FjaIc,2439
18
+ pysfi-0.1.6.dist-info/METADATA,sha256=WJUn9KiphnGrEOLLgTi0xl_KqA0ozhLSkKiKnhNuUOE,2897
19
+ pysfi-0.1.6.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
20
+ pysfi-0.1.6.dist-info/entry_points.txt,sha256=h85YEwzaEEGK4e6kBFC_G1omyGMqRF03y1H_IHiM5is,467
21
+ pysfi-0.1.6.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: hatchling 1.28.0
2
+ Generator: hatchling 1.27.0
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
@@ -4,6 +4,9 @@ bumpversion = sfi.bumpversion.bumpversion:main
4
4
  embedinstall = sfi.embedinstall.embedinstall:main
5
5
  filedate = sfi.filedate.filedate:main
6
6
  mkp = sfi.makepython.makepython:main
7
+ pdfsplit = sfi.pdfsplit.pdfsplit:main
7
8
  projectparse = sfi.projectparse.projectparse:main
8
9
  pyloadergen = sfi.pyloadergen.pyloadergen:main
9
10
  pypacker = sfi.pypacker.pypacker:main
11
+ taskk = sfi.taskkill.taskkill:main
12
+ wch = sfi.which.which:main
sfi/__init__.py CHANGED
@@ -1,3 +1,3 @@
1
1
  """Single File commands for Interactive python."""
2
2
 
3
- __version__ = "0.1.4"
3
+ __version__ = "0.1.6"