cue4parse 0.0.3__tar.gz → 0.0.4__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.
@@ -0,0 +1,24 @@
1
+ name: Publish to PyPI
2
+
3
+ on:
4
+ push:
5
+ branches: [main]
6
+ paths:
7
+ - "pyproject.toml"
8
+
9
+ jobs:
10
+ publish:
11
+ runs-on: ubuntu-latest
12
+ permissions:
13
+ id-token: write # For trusted publishing (no token needed)
14
+
15
+ steps:
16
+ - uses: actions/checkout@v4
17
+
18
+ - name: Build package
19
+ run: |
20
+ python -m pip install build
21
+ python -m build
22
+
23
+ - name: Publish to PyPI
24
+ uses: pypa/gh-action-pypi-publish@release/v1
@@ -2,3 +2,4 @@
2
2
  __pycache__
3
3
  *.pyc
4
4
  build.cmd
5
+ upload.cmd
@@ -1,8 +1,8 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cue4parse
3
- Version: 0.0.3
3
+ Version: 0.0.4
4
4
  Summary: CUE4Parse Python wrapper and CLI tool to extract packages from Unreal Engine games
5
- Project-URL: Homepage, https://pypi.org/project/cue4parse/
5
+ Project-URL: Homepage, https://github.com/joric/CUE4Parse-Python/wiki
6
6
  Project-URL: Repository, https://github.com/joric/CUE4Parse-Python
7
7
  Project-URL: Issues, https://github.com/joric/CUE4Parse-Python/issues
8
8
  Author-email: joric <joric@users.noreply.github.com>
@@ -24,7 +24,7 @@ CUE4Parse Python wrapper, CLI tool, and scripting engine
24
24
 
25
25
  `pip install cue4parse`
26
26
 
27
- * Make sure executable is added to paths, e.g. `C:\Users\user\AppData\Local\Python\pythoncore-3.14-64\Scripts`.
27
+ * Make sure executable is added to paths, e.g. `%LOCALAPPDATA%\Python\pythoncore-3.14-64\Scripts`.
28
28
  * Needs CUE4Parse libraries in `%LOCALAPPDATA%/cue4parse/libs` (downloads and unpacks FModel on Windows).
29
29
  * To run CLI: `cue4parse`
30
30
 
@@ -6,7 +6,7 @@ CUE4Parse Python wrapper, CLI tool, and scripting engine
6
6
 
7
7
  `pip install cue4parse`
8
8
 
9
- * Make sure executable is added to paths, e.g. `C:\Users\user\AppData\Local\Python\pythoncore-3.14-64\Scripts`.
9
+ * Make sure executable is added to paths, e.g. `%LOCALAPPDATA%\Python\pythoncore-3.14-64\Scripts`.
10
10
  * Needs CUE4Parse libraries in `%LOCALAPPDATA%/cue4parse/libs` (downloads and unpacks FModel on Windows).
11
11
  * To run CLI: `cue4parse`
12
12
 
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "cue4parse"
7
- version = "0.0.3"
7
+ version = "0.0.4"
8
8
  description = "CUE4Parse Python wrapper and CLI tool to extract packages from Unreal Engine games"
9
9
  requires-python = ">=3.9"
10
10
  dependencies = ["pythonnet>=3.0"]
@@ -25,6 +25,6 @@ cue4parse = "cue4parse.cli:main"
25
25
  packages = ["src/cue4parse"]
26
26
 
27
27
  [project.urls]
28
- Homepage = "https://pypi.org/project/cue4parse/"
28
+ Homepage = "https://github.com/joric/CUE4Parse-Python/wiki"
29
29
  Repository = "https://github.com/joric/CUE4Parse-Python"
30
30
  Issues = "https://github.com/joric/CUE4Parse-Python/issues"
@@ -1 +0,0 @@
1
- python -m twine upload dist/*
File without changes