mirror of
https://github.com/TriM-Organization/Musicreater.git
synced 2024-11-11 01:27:35 +08:00
更新一下版本
This commit is contained in:
parent
799b9b664d
commit
aa94e3758b
@ -19,6 +19,6 @@ Terms & Conditions: ../License.md
|
|||||||
|
|
||||||
from .main import *
|
from .main import *
|
||||||
|
|
||||||
__version__ = "0.5.0"
|
__version__ = "0.5.0.1"
|
||||||
__all__ = []
|
__all__ = []
|
||||||
__author__ = (("金羿", "Eilles Wan"), ("诸葛亮与八卦阵", "bgArray"), ("鸣凤鸽子", "MingFengPigeon"))
|
__author__ = (("金羿", "Eilles Wan"), ("诸葛亮与八卦阵", "bgArray"), ("鸣凤鸽子", "MingFengPigeon"))
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
Brotli>=1.0.9
|
Brotli>=1.0.9
|
||||||
mido>=1.2.10
|
mido>=1.2.10
|
||||||
TrimMCStruct>=0.0.5.6
|
TrimMCStruct>=0.0.5.7
|
8
setup.py
8
setup.py
@ -2,6 +2,9 @@
|
|||||||
import setuptools
|
import setuptools
|
||||||
import Musicreater
|
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:
|
with open("README.md", "r", encoding="utf-8") as fh:
|
||||||
long_description = fh.read().replace(
|
long_description = fh.read().replace(
|
||||||
"./docs/", "https://github.com/TriM-Organization/Musicreater/blob/master/docs/"
|
"./docs/", "https://github.com/TriM-Organization/Musicreater/blob/master/docs/"
|
||||||
@ -33,8 +36,5 @@ setuptools.setup(
|
|||||||
"Programming Language :: Python :: 3.10",
|
"Programming Language :: Python :: 3.10",
|
||||||
],
|
],
|
||||||
# 需要安装的依赖
|
# 需要安装的依赖
|
||||||
install_requires=[
|
install_requires=dependences,
|
||||||
"Brotli>=1.0.9",
|
|
||||||
"mido>=1.2.10",
|
|
||||||
],
|
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user