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.
@@ -1,4 +1,3 @@
1
1
  /dist
2
2
  __pycache__
3
3
  *.pyc
4
- build.cmd
@@ -1,12 +1,12 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cue4parse
3
- Version: 0.0.2
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 :: The Unlicense (Unlicense)
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 `%LOCALAPPDATA%/cue4parse/libs` (automatically downloads and unpacks FModel on Windows).
34
+ Needs CUE4Parse libraries in `~/cue4parse/libs` (automatically downloads and unpacks FModel on Windows).
35
35
 
36
- To run CLI: `cue4parse`
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 `%LOCALAPPDATA%/cue4parse/libs` (automatically downloads and unpacks FModel on Windows).
19
+ Needs CUE4Parse libraries in `~/cue4parse/libs` (automatically downloads and unpacks FModel on Windows).
20
20
 
21
- To run CLI: `cue4parse`
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.2"
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 :: The Unlicense (Unlicense)",
17
+ "License :: OSI Approved :: MIT License",
18
18
  "Operating System :: OS Independent",
19
19
  ]
20
20
 
@@ -1 +0,0 @@
1
- python -m twine upload dist/*
File without changes