forked from DeSireFire/bilibili_api
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
34 lines (31 loc) · 1.08 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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',
version='9.1.0',
license='GPLv3+',
author='MoyuScript',
description='哔哩哔哩的各种 API 调用便捷整合(视频、动态、直播等),另外附加一些常用的功能。',
long_description=long_description,
long_description_content_type="text/markdown",
packages=["bilibili_api"],
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"
],
data_files=["requirements.txt"],
install_requires=requires.splitlines(),
url="https://github.com/MoyuScript/bilibili-api",
python_requires=">=3.8"
)