cue4parse 0.0.2__tar.gz → 0.1.0__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.1.0}/.gitignore +0 -1
- {cue4parse-0.0.2 → cue4parse-0.1.0}/PKG-INFO +6 -4
- {cue4parse-0.0.2 → cue4parse-0.1.0}/README.md +4 -2
- {cue4parse-0.0.2 → cue4parse-0.1.0}/pyproject.toml +2 -2
- cue4parse-0.0.2/upload.cmd +0 -1
- {cue4parse-0.0.2 → cue4parse-0.1.0}/LICENSE +0 -0
- {cue4parse-0.0.2 → cue4parse-0.1.0}/src/cue4parse/__init__.py +0 -0
- {cue4parse-0.0.2 → cue4parse-0.1.0}/src/cue4parse/__main__.py +0 -0
- {cue4parse-0.0.2 → cue4parse-0.1.0}/src/cue4parse/cli.py +0 -0
- {cue4parse-0.0.2 → cue4parse-0.1.0}/src/cue4parse/core.py +0 -0
- {cue4parse-0.0.2 → cue4parse-0.1.0}/src/cue4parse/example.py +0 -0
- {cue4parse-0.0.2 → cue4parse-0.1.0}/src/cue4parse/includes.py +0 -0
- {cue4parse-0.0.2 → cue4parse-0.1.0}/src/cue4parse/setup.bat +0 -0
- {cue4parse-0.0.2 → cue4parse-0.1.0}/src/cue4parse/setup.sh +0 -0
- {cue4parse-0.0.2 → cue4parse-0.1.0}/src/cue4parse/setup_deps.py +0 -0
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: cue4parse
|
|
3
|
-
Version: 0.0
|
|
3
|
+
Version: 0.1.0
|
|
4
4
|
Summary: CUE4Parse Python wrapper and CLI tool to extract packages from Unreal Engine games
|
|
5
5
|
Author-email: joric <joric@users.noreply.github.com>
|
|
6
6
|
License: Unlicense
|
|
7
7
|
License-File: LICENSE
|
|
8
8
|
Keywords: cli,cue4parse,unreal
|
|
9
|
-
Classifier: License :: OSI Approved ::
|
|
9
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
10
10
|
Classifier: Operating System :: OS Independent
|
|
11
11
|
Classifier: Programming Language :: Python :: 3
|
|
12
12
|
Requires-Python: >=3.9
|
|
@@ -31,7 +31,9 @@ cue4parse package for python
|
|
|
31
31
|
|
|
32
32
|
Make sure executable is added to paths, e.g. `C:\Users\user\AppData\Local\Python\pythoncore-3.14-64\Scripts`.
|
|
33
33
|
|
|
34
|
-
Needs CUE4Parse libraries in
|
|
34
|
+
Needs CUE4Parse libraries in `~/cue4parse/libs` (automatically downloads and unpacks FModel on Windows).
|
|
35
35
|
|
|
36
|
-
To
|
|
36
|
+
Run `cue4parse-setup` if needed. To get cli version:
|
|
37
|
+
|
|
38
|
+
`cue4parse --version`
|
|
37
39
|
|
|
@@ -16,7 +16,9 @@ cue4parse package for python
|
|
|
16
16
|
|
|
17
17
|
Make sure executable is added to paths, e.g. `C:\Users\user\AppData\Local\Python\pythoncore-3.14-64\Scripts`.
|
|
18
18
|
|
|
19
|
-
Needs CUE4Parse libraries in
|
|
19
|
+
Needs CUE4Parse libraries in `~/cue4parse/libs` (automatically downloads and unpacks FModel on Windows).
|
|
20
20
|
|
|
21
|
-
To
|
|
21
|
+
Run `cue4parse-setup` if needed. To get cli version:
|
|
22
|
+
|
|
23
|
+
`cue4parse --version`
|
|
22
24
|
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "cue4parse"
|
|
7
|
-
version = "0.0
|
|
7
|
+
version = "0.1.0"
|
|
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"]
|
|
@@ -14,7 +14,7 @@ authors = [{ name = "joric", email = "joric@users.noreply.github.com" }]
|
|
|
14
14
|
keywords = ["unreal", "cue4parse", "cli"]
|
|
15
15
|
classifiers = [
|
|
16
16
|
"Programming Language :: Python :: 3",
|
|
17
|
-
"License :: OSI Approved ::
|
|
17
|
+
"License :: OSI Approved :: MIT License",
|
|
18
18
|
"Operating System :: OS Independent",
|
|
19
19
|
]
|
|
20
20
|
|
cue4parse-0.0.2/upload.cmd
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
python -m twine upload dist/*
|
|
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
|