-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
42 lines (39 loc) · 1.27 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
37
38
39
40
41
42
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 资源工具",
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.20.10",
"astc-encoder-py >= 0.1.11", # https://github.com/mos9527/sssekai_blender_io/issues/11
"wannacri",
"python-json-logger",
"tqdm",
"rich",
"coloredlogs",
"requests",
"pyaxmlparser",
],
entry_points={
"console_scripts": ["sssekai = sssekai.__main__:__main__"],
"fsspec.specs": ["abcache = sssekai.abcache.fs.AbCacheFilesystem"],
},
python_requires=">=3.10",
)