cue4parse 0.0.2__tar.gz → 0.0.3__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.
- {cue4parse-0.0.2 → cue4parse-0.0.3}/PKG-INFO +9 -16
- cue4parse-0.0.3/README.md +12 -0
- {cue4parse-0.0.2 → cue4parse-0.0.3}/pyproject.toml +6 -1
- cue4parse-0.0.2/README.md +0 -22
- {cue4parse-0.0.2 → cue4parse-0.0.3}/.gitignore +0 -0
- {cue4parse-0.0.2 → cue4parse-0.0.3}/LICENSE +0 -0
- {cue4parse-0.0.2 → cue4parse-0.0.3}/src/cue4parse/__init__.py +0 -0
- {cue4parse-0.0.2 → cue4parse-0.0.3}/src/cue4parse/__main__.py +0 -0
- {cue4parse-0.0.2 → cue4parse-0.0.3}/src/cue4parse/cli.py +0 -0
- {cue4parse-0.0.2 → cue4parse-0.0.3}/src/cue4parse/core.py +0 -0
- {cue4parse-0.0.2 → cue4parse-0.0.3}/src/cue4parse/example.py +0 -0
- {cue4parse-0.0.2 → cue4parse-0.0.3}/src/cue4parse/includes.py +0 -0
- {cue4parse-0.0.2 → cue4parse-0.0.3}/src/cue4parse/setup.bat +0 -0
- {cue4parse-0.0.2 → cue4parse-0.0.3}/src/cue4parse/setup.sh +0 -0
- {cue4parse-0.0.2 → cue4parse-0.0.3}/src/cue4parse/setup_deps.py +0 -0
- {cue4parse-0.0.2 → cue4parse-0.0.3}/upload.cmd +0 -0
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: cue4parse
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.3
|
|
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/
|
|
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
|
-
|
|
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
|
-
|
|
33
|
-
|
|
34
|
-
Needs CUE4Parse libraries in `%LOCALAPPDATA%/cue4parse/libs` (automatically downloads and unpacks FModel on Windows).
|
|
25
|
+
`pip install cue4parse`
|
|
35
26
|
|
|
36
|
-
|
|
27
|
+
* Make sure executable is added to paths, e.g. `C:\Users\user\AppData\Local\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. `C:\Users\user\AppData\Local\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.
|
|
7
|
+
version = "0.0.3"
|
|
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://pypi.org/project/cue4parse/"
|
|
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
|
-
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|