cue4parse 0.0.2__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,7 +1,10 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cue4parse
3
- Version: 0.0.2
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://github.com/joric/CUE4Parse-Python/wiki
6
+ Project-URL: Repository, https://github.com/joric/CUE4Parse-Python
7
+ Project-URL: Issues, https://github.com/joric/CUE4Parse-Python/issues
5
8
  Author-email: joric <joric@users.noreply.github.com>
6
9
  License: Unlicense
7
10
  License-File: LICENSE
@@ -15,23 +18,13 @@ Description-Content-Type: text/markdown
15
18
 
16
19
  # CUE4Parse-Python
17
20
 
18
- cue4parse package for python
19
-
20
- ## Installation
21
-
22
- ### Development
23
-
24
- `pip install -e . --force`
25
-
26
- ### User
27
-
28
- `pip install cue4parse`
21
+ CUE4Parse Python wrapper, CLI tool, and scripting engine
29
22
 
30
23
  ## Usage
31
24
 
32
- Make sure executable is added to paths, e.g. `C:\Users\user\AppData\Local\Python\pythoncore-3.14-64\Scripts`.
33
-
34
- Needs CUE4Parse libraries in `%LOCALAPPDATA%/cue4parse/libs` (automatically downloads and unpacks FModel on Windows).
25
+ `pip install cue4parse`
35
26
 
36
- To run CLI: `cue4parse`
27
+ * Make sure executable is added to paths, e.g. `%LOCALAPPDATA%\Python\pythoncore-3.14-64\Scripts`.
28
+ * Needs CUE4Parse libraries in `%LOCALAPPDATA%/cue4parse/libs` (downloads and unpacks FModel on Windows).
29
+ * To run CLI: `cue4parse`
37
30
 
@@ -0,0 +1,12 @@
1
+ # CUE4Parse-Python
2
+
3
+ CUE4Parse Python wrapper, CLI tool, and scripting engine
4
+
5
+ ## Usage
6
+
7
+ `pip install cue4parse`
8
+
9
+ * Make sure executable is added to paths, e.g. `%LOCALAPPDATA%\Python\pythoncore-3.14-64\Scripts`.
10
+ * Needs CUE4Parse libraries in `%LOCALAPPDATA%/cue4parse/libs` (downloads and unpacks FModel on Windows).
11
+ * To run CLI: `cue4parse`
12
+
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "cue4parse"
7
- version = "0.0.2"
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"]
@@ -23,3 +23,8 @@ cue4parse = "cue4parse.cli:main"
23
23
 
24
24
  [tool.hatch.build.targets.wheel]
25
25
  packages = ["src/cue4parse"]
26
+
27
+ [project.urls]
28
+ Homepage = "https://github.com/joric/CUE4Parse-Python/wiki"
29
+ Repository = "https://github.com/joric/CUE4Parse-Python"
30
+ Issues = "https://github.com/joric/CUE4Parse-Python/issues"
cue4parse-0.0.2/README.md DELETED
@@ -1,22 +0,0 @@
1
- # CUE4Parse-Python
2
-
3
- cue4parse package for python
4
-
5
- ## Installation
6
-
7
- ### Development
8
-
9
- `pip install -e . --force`
10
-
11
- ### User
12
-
13
- `pip install cue4parse`
14
-
15
- ## Usage
16
-
17
- Make sure executable is added to paths, e.g. `C:\Users\user\AppData\Local\Python\pythoncore-3.14-64\Scripts`.
18
-
19
- Needs CUE4Parse libraries in `%LOCALAPPDATA%/cue4parse/libs` (automatically downloads and unpacks FModel on Windows).
20
-
21
- To run CLI: `cue4parse`
22
-
@@ -1 +0,0 @@
1
- python -m twine upload dist/*
File without changes