forked from DeSireFire/bilibili_api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
50 lines (48 loc) · 1.43 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
fh.close()
setuptools.setup(
name='bilibili_api',
version="2.1.1",
license='GPLv3+',
author='Passkou',
author_email='[email protected]',
description='哔哩哔哩的各种API调用便捷整合(视频、动态、直播等),另外附加一些常用的功能。',
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
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"
],
install_requires=[
"requests >= 2.24.0",
"websockets >= 8.1",
"beautifulsoup4 >= 4.9.1",
"aiohttp >= 3.6.2",
"cssutils >= 1.0.2"
],
package_data={
'bilibili_api': [
"data/*.*",
"tools/*.*"
]
},
url="https://passkou.com/bilibili_api",
project_urls={
"Source": "https://github.com/Passkou/bilibili_api",
"Homepage": "https://passkou.com/bilibili_api",
"Documentation": "https://passkou.com/docs/bilibili_api"
},
python_requires=">=3",
data_files=[
("", ["./LICENSE.md", "./CHANGELOG.md"])
]
)