forked from Nemo2011/bilibili-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
57 lines (53 loc) · 1.77 KB
/
pyproject.toml
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
51
52
53
54
55
56
57
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "bilibili-api-python"
authors = [
{ name = "Nemo2011", email = "[email protected]" },
]
maintainers = [
{ name = "MoyuScript" },
{ name = "Nemo2011" },
]
dynamic = ["version", "readme", "dependencies"]
license = { text = "GPL-3.0-or-later" }
description = "The fork of module bilibili-api. 哔哩哔哩的各种 API 调用便捷整合(视频、动态、直播等),另外附加一些常用的功能。"
requires-python = ">=3.7"
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",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
scripts = { "bilibili-api-docs" = " bilibili_api.tools.opendocs.__main__:main", "ivitools" = "bilibili_api.tools.ivitools.__main__:main" }
[tool.setuptools.dynamic]
version = { attr = "bilibili_api.BILIBILI_API_VERSION" }
readme = { file = ["README.md"], content-type = "text/markdown" }
dependencies = { file = ["requirements.txt"] }
[tool.setuptools]
packages = [
"bilibili_api",
"bilibili_api.utils",
"bilibili_api.exceptions",
"bilibili_api.errors",
"bilibili_api.tools",
"bilibili_api.tools.opendocs",
"bilibili_api.tools.ivitools",
"bilibili_api.tools.parser",
"bilibili_api._pyinstaller",
]
[tool.setuptools.package-data]
"*" = [
"data/**/*.*",
"py.typed",
"requirements.txt",
"data/*.*",
"data/article/*.*",
"data/geetest/*.*",
"data/corerespond/*.*",
]