diff --git a/MANIFEST.in b/MANIFEST.in index 173e2a9..8f0a314 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,5 +1,4 @@ recursive-include *.md -include LICENSE.md exclude fcwslib/* exclude bgArrayLib/* exclude Packer/* @@ -8,6 +7,7 @@ exclude ./*.MSQ exclude ./MSCT_Packer.py exclude resources/poem.md exclude resources/* +include LICENSE.md include requirements.txt include README_EN.md include README.md \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 982c8bf..1985019 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,2 +1,2 @@ [build-system] -requires = ["setuptools", "wheel", "mido"] \ No newline at end of file +requires = ["setuptools", "wheel",] \ No newline at end of file diff --git a/setup.py b/setup.py index bff050d..6391f1b 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,8 @@ # -*- coding: utf-8 -*- import setuptools import os -from Musicreater import __version__ + +# from Musicreater import __version__ os.chdir(os.path.dirname(os.path.abspath(__file__))) @@ -15,7 +16,7 @@ with open("./README_EN.md", "r", encoding="utf-8") as fh: setuptools.setup( name="Musicreater", - version=__version__, + version="2.2.4", author="金羿Eilles, bgArray, 鱼旧梦ElapsingDreams", author_email="TriM-Organization@hotmail.com", description="A free open source library used for dealing with **Minecraft** digital musics.\n一款开源《我的世界》数字音频支持库。", @@ -37,4 +38,5 @@ setuptools.setup( # 需要安装的依赖 install_requires=dependences, python_requires=">=3.8", + license=open("./LICENSE.md", "r", encoding="utf-8").read(), )