Musicreater/setup.py

41 lines
1.5 KiB
Python
Raw Normal View History

2023-02-01 14:35:09 +00:00
# -*- coding: utf-8 -*-
import setuptools
2023-02-05 09:52:20 +00:00
import Musicreater
2023-02-01 14:35:09 +00:00
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read().replace(
"./docs/", "https://github.com/TriM-Organization/Musicreater/blob/master/docs/"
)
setuptools.setup(
name="Musicreater",
2023-02-05 09:52:20 +00:00
version=Musicreater.__version__,
2023-02-01 14:35:09 +00:00
author="Eilles Wan, bgArray",
author_email="TriM-Organization@hotmail.com",
description="一款免费开源的 《我的世界》 mid音乐转换库。\n"
2023-02-12 08:08:54 +00:00
"A free open-source python library used to convert midi into Minecraft.",
2023-02-01 14:35:09 +00:00
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/TriM-Organization/Musicreater",
packages=setuptools.find_packages(),
classifiers=[
"Intended Audience :: Developers",
"Natural Language :: Chinese (Simplified)",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
2023-02-05 09:52:20 +00:00
# 需要安装的依赖
install_requires=[
2023-02-12 08:08:54 +00:00
"Brotli>=1.0.9",
"mido>=1.2.10",
],
2023-02-01 14:35:09 +00:00
)