-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
36 lines (33 loc) · 1.09 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
32
33
34
35
36
import sys, os
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
import setuptools, sssekai
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="sssekai",
version=sssekai.__version__,
author="greats3an",
author_email="[email protected]",
description="Project SEKAI Asset Utility / PJSK 资源下载 + Live2D, Spine, USM 提取",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/mos9527/sssekai",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
install_requires=[
"msgpack",
"pycryptodome",
"unitypy >= 1.10.14, < 1.20",
"wannacri",
"python-json-logger",
"tqdm",
"coloredlogs",
"requests",
],
entry_points={"console_scripts": ["sssekai = sssekai.__main__:__main__"]},
python_requires=">=3.10",
)