forked from quaerus/deppth
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (29 loc) · 876 Bytes
/
setup.py
File metadata and controls
37 lines (29 loc) · 876 Bytes
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
32
33
34
35
36
37
"""setup.py: setuptools control."""
import re
from setuptools import setup
version = re.search(
'^__version__\s*=\s*"(.*)"',
open('deppth2/deppth2.py').read(),
re.M
).group(1)
with open("README.md", "rb") as f:
long_descr = f.read().decode("utf-8")
setup(
name = "deppth2",
packages = ["deppth2"],
entry_points = {
"console_scripts": ['deppth2 = deppth2.cli:main']
},
version = version,
include_package_data=True,
install_requires=['pillow', 'lz4', 'PyTexturePacker'],
package_data={
"deppth2": ["texconv/texconv.exe"]
},
description = "Decompress, Extract, and Pack for Pyre, Transistor, Hades, and Hades 2",
long_description = long_descr,
long_description_content_type='text/markdown',
author = "SGG Modding",
author_email = "xiaoxiao921@hotmail.fr",
url = "",
)