Skip to content

Commit

Permalink
added pylzma to requirements
Browse files Browse the repository at this point in the history
updated setup.py for building all unpackers
  • Loading branch information
klensy committed Dec 26, 2016
1 parent 8722a76 commit b249428
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 7 deletions.
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ construct==2.8.8
# for unpacking
# currently not PR legacy support (of python-zstandard)
zstandard==0.5.2
pylzma==0.4.8

# for building wt-tools
cx_Freeze==4.3.4
33 changes: 26 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,39 @@

packages = ["construct"]
includes = []
excludes = []
excludes = ["socket"]
includefiles = []

executable = Executable(
blk_unpack = Executable(
script="blk_unpack.py",
)

clog_unpack = Executable(
script="clog_unpack.py",
)

ddsx_unpack = Executable(
script="ddsx_unpack.py",
)

dxp_unpack = Executable(
script="dxp_unpack.py",
)

vromfs_unpacker = Executable(
script="vromfs_unpacker.py",
compress=True,
)

wrpl_unpacker = Executable(
script="wrpl_unpacker.py",
)

setup(
name="vromfs_unpacker",
version="0.2.0.1",
name="wt-tools",
version="0.2.0",
author='klensy',
description="description",
description="War Thunder resource extraction tools",
options={"build_exe": {"includes": includes, "excludes": excludes, "include_files": includefiles,
"packages": packages}},
executables=[executable]
executables=[blk_unpack, clog_unpack, ddsx_unpack, dxp_unpack, vromfs_unpacker, wrpl_unpacker]
)

0 comments on commit b249428

Please sign in to comment.