71 lines
2.4 KiB
Python
71 lines
2.4 KiB
Python
from setuptools import setup, find_packages
|
|
import os
|
|
|
|
# 读取README.md
|
|
def read_file(filename):
|
|
try:
|
|
with open(filename, 'r', encoding='utf-8') as f:
|
|
return f.read()
|
|
except:
|
|
return "Audio Player By DVS - Advanced audio processing and playback library"
|
|
|
|
# 定义版本常量
|
|
VERSION = "4.1.0rc1"
|
|
|
|
# 自动生成或更新 _version.py
|
|
def write_version_file():
|
|
version_file_path = os.path.join("ap_ds", "_version.py")
|
|
os.makedirs(os.path.dirname(version_file_path), exist_ok=True)
|
|
with open(version_file_path, "w", encoding="utf-8") as f:
|
|
f.write(f'__version__ = "{VERSION}"\n')
|
|
|
|
# 调用函数生成版本文件
|
|
write_version_file()
|
|
|
|
# 获取README内容
|
|
long_description = read_file("README.md")
|
|
|
|
setup(
|
|
name="ap_ds",
|
|
version=VERSION,
|
|
description="Audio Player By DVS - Advanced audio processing and playback",
|
|
long_description=long_description,
|
|
long_description_content_type="text/markdown",
|
|
author="DVS",
|
|
author_email="me@dvsyun.top",
|
|
url="https://apds.top",
|
|
packages=find_packages(),
|
|
classifiers=[
|
|
"Development Status :: 5 - Production/Stable",
|
|
"Intended Audience :: Developers",
|
|
# 自定义许可信息
|
|
"License :: Other/Proprietary License",
|
|
"Operating System :: Microsoft :: Windows",
|
|
"Operating System :: MacOS",
|
|
"Operating System :: POSIX :: Linux", # 仅保留Linux,删掉Unix
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.7",
|
|
"Programming Language :: Python :: 3.8",
|
|
"Programming Language :: Python :: 3.9",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Topic :: Multimedia :: Sound/Audio",
|
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
],
|
|
keywords="audio music player playback sdl2 dvs",
|
|
python_requires=">=3.7",
|
|
install_requires=[], # 纯Python依赖
|
|
include_package_data=True,
|
|
# 添加许可证信息 - 根据要求修改
|
|
license="Custom Open Source License",
|
|
# 确保包含所有必要的文件
|
|
package_data={
|
|
'': ['*.md', '*.txt', '*.py'], # 包含所有markdown和文本文件
|
|
},
|
|
# 添加项目URLs(删除了GitHub链接)
|
|
project_urls={
|
|
'Documentation': 'https://apds.top',
|
|
'License Info': 'https://apds.top',
|
|
},
|
|
)
|