Spaces:
Build error
Build error
| from setuptools import setup, find_packages | |
| setup( | |
| name="install_pysrt", | |
| version="0.1.0", | |
| packages=find_packages(), | |
| description="在 Hugging Face 环境中安装 pysrt 的助手工具", | |
| long_description=""" | |
| 这个包提供了在 Hugging Face 环境中安装 pysrt 的特殊方法, | |
| 解决了 bdist_wheel 命令错误和其他常见的安装问题。 | |
| """, | |
| author="YourName", | |
| author_email="your.email@example.com", | |
| url="https://github.com/yourusername/install_pysrt", | |
| classifiers=[ | |
| "Development Status :: 3 - Alpha", | |
| "Intended Audience :: Developers", | |
| "Programming Language :: Python :: 3", | |
| "Programming Language :: Python :: 3.7", | |
| "Programming Language :: Python :: 3.8", | |
| "Programming Language :: Python :: 3.9", | |
| "Programming Language :: Python :: 3.10", | |
| ], | |
| python_requires=">=3.7", | |
| install_requires=[ | |
| "setuptools>=60.0.0", | |
| ], | |
| ) |