加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 1022 Bytes
一键复制 编辑 原始数据 按行查看 历史
Arendelle 提交于 2024-03-03 13:24 . plmidi v1.1.2
import setuptools
compile_args = ["/std:c++20"]
setuptools.setup(
name="plmidi",
version="1.1.2",
author="Goodenough",
author_email="2381642961@qq.com",
description="midi player for Python Package physicsLab",
long_description="show detils in [github](https://github.com/GoodenoughPhysicsLab/plmidi)",
long_description_content_type="text/markdown",
url="https://github.com/GoodenoughPhysicsLab/plmidi",
packages=setuptools.find_packages(),
install_requires=["mido"],
license="MIT",
python_requires='>=3.8',
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Natural Language :: Chinese (Simplified)",
"Operating System :: OS Independent",
],
ext_modules=[
setuptools.Extension(
name="plmidi_cpp",
language="c++",
sources=[
"plmidi_cpp/setup.cpp"
],
extra_compile_args=compile_args
)
]
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化