更新一下版本

This commit is contained in:
EillesWan 2023-04-29 21:32:09 +08:00
parent 799b9b664d
commit aa94e3758b
3 changed files with 6 additions and 6 deletions

View File

@ -19,6 +19,6 @@ Terms & Conditions: ../License.md
from .main import *
__version__ = "0.5.0"
__version__ = "0.5.0.1"
__all__ = []
__author__ = (("金羿", "Eilles Wan"), ("诸葛亮与八卦阵", "bgArray"), ("鸣凤鸽子", "MingFengPigeon"))

View File

@ -1,3 +1,3 @@
Brotli>=1.0.9
mido>=1.2.10
TrimMCStruct>=0.0.5.6
TrimMCStruct>=0.0.5.7

View File

@ -2,6 +2,9 @@
import setuptools
import Musicreater
with open("requirements.txt", "r", encoding="utf-8") as fh:
dependences = fh.read().strip().split("\n")
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read().replace(
"./docs/", "https://github.com/TriM-Organization/Musicreater/blob/master/docs/"
@ -33,8 +36,5 @@ setuptools.setup(
"Programming Language :: Python :: 3.10",
],
# 需要安装的依赖
install_requires=[
"Brotli>=1.0.9",
"mido>=1.2.10",
],
install_requires=dependences,
)