From 24fd0121a350529ba304d0a27725ea3546906312 Mon Sep 17 00:00:00 2001
From: EillesWan
@@ -24,7 +24,7 @@
## 介绍🚀
-音·创 是一个免费开源的针对 **《我的世界》** 的midi音乐转换库
+音·创 是一个免费开源的针对 **《我的世界》** 的MIDI音乐转换库
欢迎加群:[861684859](https://jq.qq.com/?_wv=1027&k=hpeRxrYr)
@@ -35,7 +35,7 @@
pip install Musicreater
```
-- 如果报错,尝试:
+- 如果出现错误,可以尝试:
```bash
pip install -i https://pypi.python.org/simple Musicreater
```
@@ -44,7 +44,7 @@
pip install -i https://pypi.python.org/simple Musicreater --upgrade
```
-- 克隆仓库
+- 克隆仓库并安装
```bash
git clone https://gitee.com/TriM-Organization/Musicreater.git
cd Musicreater
@@ -75,7 +75,7 @@
- 感谢 **Touch “偷吃”**\
@@ -65,6 +65,18 @@ Meet problems? Welcome to give out your issue [here](https://gitee.com/EillesWan
Want to get in contact of developers? Welcome to join our [Chat QQ group](https://jq.qq.com/?_wv=1027&k=hpeRxrYr).
+--------------------------------------------
+
+NOT AN OFFICIAL MINECRAFT PRODUCT.
+
+NOT APPROVED BY OR ASSOCIATED WITH MOJANG OR MICROSOFT.
+
+此项目并非一个官方 《我的世界》(*Minecraft*)项目
+
+此项目不隶属或关联于 Mojang Studios 或 微软
+
+
+
[Bilibili: Eilles]: https://img.shields.io/badge/Bilibili-%E5%87%8C%E4%BA%91%E9%87%91%E7%BE%BF-00A1E7?style=for-the-badge
[Bilibili: bgArray]: https://img.shields.io/badge/Bilibili-%E8%AF%B8%E8%91%9B%E4%BA%AE%E4%B8%8E%E5%85%AB%E5%8D%A6%E9%98%B5-00A1E7?style=for-the-badge
diff --git a/requirements.txt b/requirements.txt
index 04ba938..70abd76 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -1,2 +1,2 @@
-Brotli==1.0.9
-mido==1.2.10
\ No newline at end of file
+Brotli>=1.0.9
+mido>=1.2.10
\ No newline at end of file
diff --git a/setup.py b/setup.py
index af744a0..051056d 100644
--- a/setup.py
+++ b/setup.py
@@ -13,7 +13,7 @@ setuptools.setup(
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",
@@ -34,7 +34,11 @@ setuptools.setup(
],
# 需要安装的依赖
install_requires=[
- 'mido',
- "brotli"
+ "Brotli>=1.0.9",
+ "mido>=1.2.10",
+ ],
+ requires=[
+ "Brotli>=1.0.9",
+ "mido>=1.2.10",
],
)