forked from shawngmc/game-extraction-toolbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
31 lines (28 loc) · 822 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[project]
name = "game-extraction-toolbox"
version = "0.1.7"
authors = [
{ name="Shawn McNaughton", email="[email protected]" },
]
description = "CLI Tools for investigating game files and extracting known packages"
readme = "README.md"
license = { file="LICENSE" }
requires-python = ">=3.9"
dependencies = [
'bitarray >= 2.6.0',
'click >= 8.1.3',
'click-log >= 0.4.0',
'psutil >= 5.9.1',
'python-magic-bin >= 0.4.14; platform_system == "Windows"',
'rich >= 12.5.1',
'texttable >= 1.6.4',
'UnityPy >= 1.9.12'
]
[project.urls]
"Homepage" = "https://github.com/shawngmc/game-extraction-toolbox"
"Bug Tracker" = "https://github.com/shawngmc/game-extraction-toolbox/issues"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project.scripts]
gextoolbox = "gex.toolbox:cli"