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 *
__version__ = "0.3"
__version__ = "0.3.0"
__all__ = []
__author__ = (("金羿", "Eilles Wan"), ("诸葛亮与八卦阵", "bgArray"))

View File

@ -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,7 +9,7 @@ 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"
@ -31,4 +32,9 @@ setuptools.setup(
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
# 需要安装的依赖
install_requires=[
'mido',
"brotli"
],
)