-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (28 loc) · 1.03 KB
/
setup.py
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
import sys, os
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
import setuptools, UnityPyLive2DExtractor
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="UnityPyLive2DExtractor",
version="%d.%d.%d" % UnityPyLive2DExtractor.__version__,
author="greats3an",
description="General purpose, single-file Unity Live2D Asset recovery tool",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/mos9527/UnityPyLive2DExtractor",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
install_requires=["sssekai>=0.7.12"],
entry_points={
"console_scripts": [
"UnityPyLive2DExtractor = UnityPyLive2DExtractor.__main__:__main__"
]
},
python_requires=">=3.10",
)