加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 1.26 KB
一键复制 编辑 原始数据 按行查看 历史
nemo2011 提交于 2022-07-12 14:50 . new: 10.2.2
import setuptools
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
with open("requirements.txt", "r", encoding="utf8") as f:
requires = f.read()
setuptools.setup(
name='bilibili-api-python',
version='10.2.2',
license='GPLv3+',
author='MoyuScript, Nemo2011',
description='原 bilibili-api。哔哩哔哩的各种 API 调用便捷整合(视频、动态、直播等),另外附加一些常用的功能。',
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(exclude=["tests"]),
keywords=[
"bilibili",
"api",
"spider"
],
classifiers=[
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Natural Language :: Chinese (Simplified)",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10"
],
package_data={
"": [
"data/**/*.*",
"requirements.txt",
"data/*.*",
"html/*.*"
]
},
install_requires=requires.splitlines(),
url="https://github.com/Nemo2011/bilibili_api",
python_requires=">=3.8"
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化