forked from yutto-dev/yutto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
51 lines (43 loc) · 1.36 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
[tool.poetry]
name = "yutto"
version = "2.0.0-beta.9"
description = "🧊 一个可爱且任性的 B 站视频下载器"
authors = ["Nyakku Shigure <[email protected]>"]
license = "GPL-3.0"
readme = "README.md"
homepage = "https://github.com/SigureMo/yutto"
repository = "https://github.com/SigureMo/yutto"
keywords = ["python", "bilibili", "video", "downloader", "danmaku"]
classifiers = [
"Environment :: Console",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation :: CPython",
]
[tool.poetry.dependencies]
python = "^3.9.0"
aiohttp = "^3.7.4"
aiofiles = ">=0.7,<0.9"
biliass = "1.3.4"
uvloop = { version = "0.16.0", optional = true }
dicttoxml = "^1.7.4"
[tool.poetry.dev-dependencies]
pytest = "^6.2"
black = "^22.1"
[tool.poetry.extras]
uvloop = ["uvloop"]
[tool.poetry.scripts]
yutto = "yutto.__main__:main"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/SigureMo/yutto/issues"
[tool.pytest.ini_options]
markers = ["api", "e2e", "downloader", "ci_skip", "ci_only"]
[tool.black]
line-length = 120
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"