pysfi 0.1.3__tar.gz → 0.1.5__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.
Files changed (25) hide show
  1. {pysfi-0.1.3 → pysfi-0.1.5}/.gitignore +19 -19
  2. {pysfi-0.1.3 → pysfi-0.1.5}/PKG-INFO +1 -1
  3. {pysfi-0.1.3 → pysfi-0.1.5}/pyproject.toml +117 -113
  4. {pysfi-0.1.3 → pysfi-0.1.5}/sfi/__init__.py +1 -1
  5. {pysfi-0.1.3 → pysfi-0.1.5}/sfi/alarmclock/alarmclock.py +367 -367
  6. {pysfi-0.1.3 → pysfi-0.1.5}/sfi/bumpversion/__init__.py +1 -1
  7. {pysfi-0.1.3 → pysfi-0.1.5}/sfi/bumpversion/bumpversion.py +535 -535
  8. {pysfi-0.1.3 → pysfi-0.1.5}/sfi/embedinstall/embedinstall.py +418 -418
  9. {pysfi-0.1.3 → pysfi-0.1.5}/sfi/makepython/makepython.py +310 -328
  10. {pysfi-0.1.3 → pysfi-0.1.5}/sfi/pyloadergen/pyloadergen.py +995 -995
  11. {pysfi-0.1.3 → pysfi-0.1.5}/sfi/pyloadergen/tests/test_pyloadergen.py +294 -294
  12. pysfi-0.1.5/sfi/taskkill/taskkill.py +236 -0
  13. pysfi-0.1.5/sfi/which/which.py +74 -0
  14. {pysfi-0.1.3 → pysfi-0.1.5}/README.md +0 -0
  15. {pysfi-0.1.3 → pysfi-0.1.5}/sfi/alarmclock/__init__.py +0 -0
  16. {pysfi-0.1.3 → pysfi-0.1.5}/sfi/bumpversion/README.md +0 -0
  17. {pysfi-0.1.3 → pysfi-0.1.5}/sfi/bumpversion/tests/__init__.py +0 -0
  18. {pysfi-0.1.3 → pysfi-0.1.5}/sfi/bumpversion/tests/test_bumpversion.py +0 -0
  19. {pysfi-0.1.3 → pysfi-0.1.5}/sfi/filedate/README.md +0 -0
  20. {pysfi-0.1.3 → pysfi-0.1.5}/sfi/filedate/__init__.py +0 -0
  21. {pysfi-0.1.3 → pysfi-0.1.5}/sfi/filedate/filedate.py +0 -0
  22. {pysfi-0.1.3 → pysfi-0.1.5}/sfi/makepython/__init__.py +0 -0
  23. {pysfi-0.1.3 → pysfi-0.1.5}/sfi/projectparse/projectparse.py +0 -0
  24. {pysfi-0.1.3 → pysfi-0.1.5}/sfi/pyloadergen/tests/__init__.py +0 -0
  25. {pysfi-0.1.3 → pysfi-0.1.5}/sfi/pypacker/fspacker.py +0 -0
@@ -1,19 +1,19 @@
1
- # Python-generated files
2
- __pycache__/
3
- *.py[oc]
4
- build/
5
- dist/
6
- wheels/
7
- *.egg-info
8
-
9
- # Virtual environments
10
- .venv
11
- uv.lock
12
- .vscode
13
- projects.json
14
- runtime
15
- .cache
16
- .coverage
17
- pyloader.exe
18
- *.c
19
- .python-version
1
+ # Python-generated files
2
+ __pycache__/
3
+ *.py[oc]
4
+ build/
5
+ dist/
6
+ wheels/
7
+ *.egg-info
8
+
9
+ # Virtual environments
10
+ .venv
11
+ uv.lock
12
+ .vscode
13
+ projects.json
14
+ runtime
15
+ .cache
16
+ .coverage
17
+ pyloader.exe
18
+ *.c
19
+ .python-version
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pysfi
3
- Version: 0.1.3
3
+ Version: 0.1.5
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'
@@ -1,113 +1,117 @@
1
- [build-system]
2
- build-backend = "hatchling.build"
3
- requires = ["hatchling"]
4
-
5
- [project]
6
- dependencies = ["tomli>=2.4.0; python_version<'3.11'"]
7
- description = "Single File commands for Interactive python."
8
- name = "pysfi"
9
- readme = "README.md"
10
- requires-python = ">=3.8"
11
- version = "0.1.3"
12
-
13
- [project.scripts]
14
- alarmclk = "sfi.alarmclock.alarmclock:main"
15
- bumpversion = "sfi.bumpversion.bumpversion:main"
16
- embedinstall = "sfi.embedinstall.embedinstall:main"
17
- filedate = "sfi.filedate.filedate:main"
18
- mkp = "sfi.makepython.makepython:main"
19
- projectparse = "sfi.projectparse.projectparse:main"
20
- pyloadergen = "sfi.pyloadergen.pyloadergen:main"
21
- pypacker = "sfi.pypacker.pypacker:main"
22
-
23
- [tool.hatch.build.targets.wheel]
24
- exclude = [
25
- "sfi/*/README.md",
26
- "sfi/*/dist",
27
- "sfi/*/pyproject.toml",
28
- "sfi/*/tests",
29
- ]
30
- packages = ["sfi"]
31
-
32
- # Only include necessary source files to minimize package size
33
- [tool.hatch.build]
34
- include = ["README.md", "sfi/**/*.py", "sfi/pyproject.toml"]
35
-
36
- [tool.ruff]
37
- line-length = 120
38
- target-version = "py38"
39
-
40
- # Exclude files and directories
41
- exclude = [
42
- ".bzr",
43
- ".direnv",
44
- ".eggs",
45
- ".git",
46
- ".git-rewrite",
47
- ".hg",
48
- ".mypy_cache",
49
- ".nox",
50
- ".pants.d",
51
- ".pytype",
52
- ".ruff_cache",
53
- ".svn",
54
- ".tox",
55
- ".venv",
56
- "__pypackages__",
57
- "_build",
58
- "buck-out",
59
- "build",
60
- "dist",
61
- "node_modules",
62
- "venv",
63
- ]
64
-
65
- [tool.ruff.lint]
66
- dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
67
- fixable = ["ALL"]
68
- ignore = [
69
- "B008", # Do not perform function calls in function arguments
70
- "E501", # Line too long (handled by formatter)
71
- ]
72
- select = [
73
- "B", # flake8-bugbear
74
- "C4", # flake8-comprehensions
75
- "E", # pycodestyle errors
76
- "F", # Pyflakes
77
- "I", # isort
78
- "N", # pep8-naming
79
- "RUF", # Ruff-specific rules
80
- "SIM", # flake8-simplify
81
- "UP", # pyupgrade
82
- "W", # pycodestyle warnings
83
- ]
84
- unfixable = []
85
-
86
- [tool.ruff.lint.isort]
87
- known-first-party = ["sfi"]
88
-
89
- [tool.ruff.lint.per-file-ignores]
90
- "__init__.py" = ["F401"] # Allow unused imports
91
-
92
- [tool.uv.workspace]
93
- members = [
94
- "sfi/alarmclock",
95
- "sfi/bumpversion",
96
- "sfi/embedinstall",
97
- "sfi/filedate",
98
- "sfi/makepython",
99
- "sfi/projectparse",
100
- "sfi/pyloadergen",
101
- "sfi/pypacker",
102
- ]
103
-
104
- [dependency-groups]
105
- dev = [
106
- "hatch>=1.14.2",
107
- "pyside2>=5.15.2.1",
108
- "pytest-cov>=5.0.0",
109
- "pytest>=8.3.5",
110
- "qdarkstyle>=3.2.3",
111
- "ruff>=0.14.11",
112
- "tomli>=2.4.0",
113
- ]
1
+ [build-system]
2
+ build-backend = "hatchling.build"
3
+ requires = ["hatchling"]
4
+
5
+ [project]
6
+ dependencies = ["tomli>=2.4.0; python_version<'3.11'"]
7
+ description = "Single File commands for Interactive python."
8
+ name = "pysfi"
9
+ readme = "README.md"
10
+ requires-python = ">=3.8"
11
+ version = "0.1.5"
12
+
13
+ [project.scripts]
14
+ alarmclk = "sfi.alarmclock.alarmclock:main"
15
+ bumpversion = "sfi.bumpversion.bumpversion:main"
16
+ embedinstall = "sfi.embedinstall.embedinstall:main"
17
+ filedate = "sfi.filedate.filedate:main"
18
+ mkp = "sfi.makepython.makepython:main"
19
+ projectparse = "sfi.projectparse.projectparse:main"
20
+ pyloadergen = "sfi.pyloadergen.pyloadergen:main"
21
+ pypacker = "sfi.pypacker.pypacker:main"
22
+ taskk = "sfi.taskkill.taskkill:main"
23
+ wch = "sfi.which.which:main"
24
+
25
+ [tool.hatch.build.targets.wheel]
26
+ exclude = [
27
+ "sfi/*/README.md",
28
+ "sfi/*/dist",
29
+ "sfi/*/pyproject.toml",
30
+ "sfi/*/tests",
31
+ ]
32
+ packages = ["sfi"]
33
+
34
+ # Only include necessary source files to minimize package size
35
+ [tool.hatch.build]
36
+ include = ["README.md", "sfi/**/*.py", "sfi/pyproject.toml"]
37
+
38
+ [tool.ruff]
39
+ line-length = 120
40
+ target-version = "py38"
41
+
42
+ # Exclude files and directories
43
+ exclude = [
44
+ ".bzr",
45
+ ".direnv",
46
+ ".eggs",
47
+ ".git",
48
+ ".git-rewrite",
49
+ ".hg",
50
+ ".mypy_cache",
51
+ ".nox",
52
+ ".pants.d",
53
+ ".pytype",
54
+ ".ruff_cache",
55
+ ".svn",
56
+ ".tox",
57
+ ".venv",
58
+ "__pypackages__",
59
+ "_build",
60
+ "buck-out",
61
+ "build",
62
+ "dist",
63
+ "node_modules",
64
+ "venv",
65
+ ]
66
+
67
+ [tool.ruff.lint]
68
+ dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
69
+ fixable = ["ALL"]
70
+ ignore = [
71
+ "B008", # Do not perform function calls in function arguments
72
+ "E501", # Line too long (handled by formatter)
73
+ ]
74
+ select = [
75
+ "B", # flake8-bugbear
76
+ "C4", # flake8-comprehensions
77
+ "E", # pycodestyle errors
78
+ "F", # Pyflakes
79
+ "I", # isort
80
+ "N", # pep8-naming
81
+ "RUF", # Ruff-specific rules
82
+ "SIM", # flake8-simplify
83
+ "UP", # pyupgrade
84
+ "W", # pycodestyle warnings
85
+ ]
86
+ unfixable = []
87
+
88
+ [tool.ruff.lint.isort]
89
+ known-first-party = ["sfi"]
90
+
91
+ [tool.ruff.lint.per-file-ignores]
92
+ "__init__.py" = ["F401"] # Allow unused imports
93
+
94
+ [tool.uv.workspace]
95
+ members = [
96
+ "sfi/alarmclock",
97
+ "sfi/bumpversion",
98
+ "sfi/embedinstall",
99
+ "sfi/filedate",
100
+ "sfi/makepython",
101
+ "sfi/projectparse",
102
+ "sfi/pyloadergen",
103
+ "sfi/pypacker",
104
+ "sfi/taskkill",
105
+ "sfi/which",
106
+ ]
107
+
108
+ [dependency-groups]
109
+ dev = [
110
+ "hatch>=1.14.2",
111
+ "pyside2>=5.15.2.1",
112
+ "pytest-cov>=5.0.0",
113
+ "pytest>=8.3.5",
114
+ "qdarkstyle>=3.2.3",
115
+ "ruff>=0.14.11",
116
+ "tomli>=2.4.0",
117
+ ]
@@ -1,3 +1,3 @@
1
1
  """Single File commands for Interactive python."""
2
2
 
3
- __version__ = "0.1.3"
3
+ __version__ = "0.1.5"