-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (59 loc) · 1.68 KB
/
pyproject.toml
File metadata and controls
68 lines (59 loc) · 1.68 KB
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
58
59
60
61
62
63
64
65
66
67
68
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "mybiout"
version = "60314.0"
description = "MyBiOut! 综合性一站式开箱即用哔哩哔哩导出工具集"
readme = "README.md"
license = { text = "MIT" }
authors = [{ name = "WaterRun", email = "linzhuangrun49@gmail.com" }]
maintainers = [{ name = "WaterRun", email = "linzhuangrun49@gmail.com" }]
keywords = [
"bilibili",
"downloader",
"exporter",
"video",
"cache",
"markdown",
"bbdown",
"m4s",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Multimedia :: Video",
"Topic :: Utilities",
]
requires-python = ">=3.12"
dependencies = [
"fastapi>=0.115.0",
"uvicorn[standard]>=0.30.0",
"httpx>=0.27.0",
"biliffm4s>=0.1.0",
]
[project.optional-dependencies]
dev = ["pytest>=8.0.0", "ruff>=0.1.0"]
[project.scripts]
"MyBiOut!" = "mybiout.main:main"
[project.urls]
Homepage = "https://github.com/Water-Run/MyBiOut"
Repository = "https://github.com/Water-Run/MyBiOut.git"
Issues = "https://github.com/Water-Run/MyBiOut/issues"
[tool.hatch.build.targets.sdist]
include = ["/mybiout"]
[tool.hatch.build.targets.wheel]
packages = ["mybiout"]
[tool.ruff]
target-version = "py312"
line-length = 120
[tool.ruff.lint]
select = ["E", "W", "F", "I", "B", "C4", "UP", "SIM", "PTH", "RUF"]
ignore = ["E501", "B008", "SIM108"]
[tool.ruff.lint.isort]
known-first-party = ["mybiout"]