update 2023/2/5 小改

This commit is contained in:
bgArray 2023-02-05 17:52:20 +08:00
parent 26fbd346d8
commit 27c6556693
2 changed files with 9 additions and 3 deletions

View File

@ -19,7 +19,7 @@ Terms & Conditions: ../License.md
from .main import * from .main import *
__version__ = "0.3" __version__ = "0.3.0"
__all__ = [] __all__ = []
__author__ = (("金羿", "Eilles Wan"), ("诸葛亮与八卦阵", "bgArray")) __author__ = (("金羿", "Eilles Wan"), ("诸葛亮与八卦阵", "bgArray"))

View File

@ -1,5 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
import setuptools import setuptools
import Musicreater
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(
@ -8,11 +9,11 @@ with open("README.md", "r", encoding="utf-8") as fh:
setuptools.setup( setuptools.setup(
name="Musicreater", name="Musicreater",
version="0.2.3", version=Musicreater.__version__,
author="Eilles Wan, bgArray", author="Eilles Wan, bgArray",
author_email="TriM-Organization@hotmail.com", author_email="TriM-Organization@hotmail.com",
description="一款免费开源的 《我的世界》 mid音乐转换库。\n" 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=long_description,
long_description_content_type="text/markdown", long_description_content_type="text/markdown",
url="https://github.com/TriM-Organization/Musicreater", url="https://github.com/TriM-Organization/Musicreater",
@ -31,4 +32,9 @@ setuptools.setup(
"Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.10",
], ],
# 需要安装的依赖
install_requires=[
'mido',
"brotli"
],
) )