-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Added support for GXT files from PC version - Added new option `--platform` - Changed version numbering to date format - Removed old code in a docstring - Rewrote part of the CLI interface
- Loading branch information
1 parent
8eee21c
commit 8813d51
Showing
6 changed files
with
75 additions
and
71 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1 @@ | ||
from .gxtfile import GXTFile | ||
from .mh2utils import MH2Utils | ||
from .main import cli |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,20 @@ | ||
from setuptools import setup, find_packages | ||
|
||
with open("requirements.txt") as f, open("README.md") as fh: | ||
required = f.read().splitlines() | ||
long_description = fh.read() | ||
with open("README.md") as rf: | ||
readme_file = rf.read() | ||
|
||
setup( | ||
name="mh2-gxttool", | ||
version="1.0.0", | ||
description="CLI tool to unpack/pack GXT files from Manhunt 2 PSP/PS2", | ||
long_description=long_description, | ||
version="2023.05.24", | ||
description="CLI tool to unpack/pack GXT files from Manhunt 2 PSP/PS2/PC", | ||
long_description=readme_file, | ||
long_description_content_type="text/markdown", | ||
author="santiago046", | ||
license="GPLv3", | ||
url="https://github.com/santiago046/mh2-gxtttool", | ||
packages=find_packages(), | ||
python_requires=">=3.8", | ||
install_requires=required, | ||
entry_points={ | ||
"console_scripts": ["mh2-gxttool = mh2_gxttool.__main__:cli"] | ||
}, | ||
project_urls={"Source code": "https://github.com/santiago046/mh2-gxttool"}, | ||
author="santiago046", | ||
python_requires=">=3.8", | ||
packages=find_packages(), | ||
install_requires=["click>=8.1.3", "tomlkit>=0.11.8"], | ||
entry_points={"console_scripts": ["mh2-gxttool = mh2_gxttool.main:cli"]}, | ||
) |