maketool 0.8.23__tar.gz → 0.8.25__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.
@@ -1,10 +1,11 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: maketool
3
- Version: 0.8.23
3
+ Version: 0.8.25
4
4
  Summary: Python Automation tool for building PySide6 UI and PyInstaller EXE.
5
5
  Author-email: Alan Lilly <panofish@gmail.com>
6
6
  Requires-Python: >=3.7
7
7
  Description-Content-Type: text/markdown
8
+ Requires-Dist: psutil
8
9
 
9
10
  # maketool
10
11
 
@@ -179,6 +179,7 @@ def main():
179
179
  #-------------------------------------------------------------------
180
180
 
181
181
  version_file = os.path.join(pgm_path, f"{pgm_basename}_version.txt")
182
+ version_file = version_file.replace("\\", "/") # flip all backslashes to forward slashes
182
183
  major, minor, patch, build = exe_version.split(".")
183
184
 
184
185
  version_resource = f"""
@@ -1,10 +1,11 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: maketool
3
- Version: 0.8.23
3
+ Version: 0.8.25
4
4
  Summary: Python Automation tool for building PySide6 UI and PyInstaller EXE.
5
5
  Author-email: Alan Lilly <panofish@gmail.com>
6
6
  Requires-Python: >=3.7
7
7
  Description-Content-Type: text/markdown
8
+ Requires-Dist: psutil
8
9
 
9
10
  # maketool
10
11
 
@@ -11,4 +11,5 @@ maketool.egg-info/PKG-INFO
11
11
  maketool.egg-info/SOURCES.txt
12
12
  maketool.egg-info/dependency_links.txt
13
13
  maketool.egg-info/entry_points.txt
14
+ maketool.egg-info/requires.txt
14
15
  maketool.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ psutil
@@ -1,11 +1,13 @@
1
1
  [project]
2
2
  name = "maketool"
3
- version = "0.8.23"
3
+ version = "0.8.25"
4
4
  description = "Python Automation tool for building PySide6 UI and PyInstaller EXE."
5
5
  authors = [{ name = "Alan Lilly", email = "panofish@gmail.com" }]
6
6
  readme = "README.md"
7
7
  requires-python = ">=3.7"
8
- dependencies = []
8
+ dependencies = [
9
+ "psutil"
10
+ ]
9
11
 
10
12
  [project.scripts]
11
13
  maketool-refscan = "maketool.refscan:main"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes