From 27c655669329aa64270ebba89fb46ee54c498d49 Mon Sep 17 00:00:00 2001 From: bgArray <474037765@qq.com> Date: Sun, 5 Feb 2023 17:52:20 +0800 Subject: [PATCH] =?UTF-8?q?update=202023/2/5=20=E5=B0=8F=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Musicreater/__init__.py | 2 +- setup.py | 10 ++++++++-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/Musicreater/__init__.py b/Musicreater/__init__.py index 3bceb41..84619fa 100644 --- a/Musicreater/__init__.py +++ b/Musicreater/__init__.py @@ -19,7 +19,7 @@ Terms & Conditions: ../License.md from .main import * -__version__ = "0.3" +__version__ = "0.3.0" __all__ = [] __author__ = (("金羿", "Eilles Wan"), ("诸葛亮与八卦阵", "bgArray")) diff --git a/setup.py b/setup.py index 33e1204..af744a0 100644 --- a/setup.py +++ b/setup.py @@ -1,5 +1,6 @@ # -*- coding: utf-8 -*- import setuptools +import Musicreater with open("README.md", "r", encoding="utf-8") as fh: long_description = fh.read().replace( @@ -8,11 +9,11 @@ with open("README.md", "r", encoding="utf-8") as fh: setuptools.setup( name="Musicreater", - version="0.2.3", + version=Musicreater.__version__, author="Eilles Wan, bgArray", author_email="TriM-Organization@hotmail.com", description="一款免费开源的 《我的世界》 mid音乐转换库。\n" - " A free open-source python library used to convert midi into Minecraft.", + " A free open-source python library used to convert midi into Minecraft.", long_description=long_description, long_description_content_type="text/markdown", url="https://github.com/TriM-Organization/Musicreater", @@ -31,4 +32,9 @@ setuptools.setup( "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", ], + # 需要安装的依赖 + install_requires=[ + 'mido', + "brotli" + ], )