Musicreater/setup.py

42 lines
1.5 KiB
Python
Raw Normal View History

2023-02-01 14:35:09 +00:00
# -*- coding: utf-8 -*-
import setuptools
import os
from Musicreater import __version__
2023-02-01 14:35:09 +00:00
os.chdir(os.path.dirname(os.path.abspath(__file__)))
with open("./requirements.txt", "r", encoding="utf-8") as fh:
2023-04-29 13:32:09 +00:00
dependences = fh.read().strip().split("\n")
with open("./README_EN.md", "r", encoding="utf-8") as fh:
2023-02-01 14:35:09 +00:00
long_description = fh.read().replace(
"./docs/", "https://github.com/TriM-Organization/Musicreater/blob/master/docs/"
)
setuptools.setup(
name="Musicreater",
version=__version__,
2024-07-18 08:21:10 +00:00
author="金羿Eilles, bgArray, 鱼旧梦ElapsingDreams",
2023-02-01 14:35:09 +00:00
author_email="TriM-Organization@hotmail.com",
description="一款开源《我的世界》数字音频支持库。\n"
"A free open source library used for dealing with **Minecraft** digital musics.",
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",
2023-02-01 14:35:09 +00:00
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Multimedia",
"Topic :: Multimedia :: Sound/Audio :: MIDI",
2023-02-01 14:35:09 +00:00
],
2023-02-05 09:52:20 +00:00
# 需要安装的依赖
2023-04-29 13:32:09 +00:00
install_requires=dependences,
python_requires=">=3.8",
2023-02-01 14:35:09 +00:00
)