forked from biliup/biliup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
59 lines (51 loc) · 1.46 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
58
59
[build-system]
requires = ['pip>=20.3', 'setuptools>=62', 'wheel']
build-backend = "setuptools.build_meta"
[project]
name = "biliup"
authors = [{ name = "ForgQi" }]
description = "stream download and upload"
keywords = ["bilibili douyu huya"]
urls = { Homepage = "https://github.com/ForgQi/bilibiliupload" }
requires-python = ">= 3.8"
dependencies = [
"tomli-w>=1.0.0",
"stream-gears >= 0.2.1,<0.3",
"psutil >= 5.4.6",
"aiofiles >= 22.1.0",
"yt-dlp >= 2024.7.9",
"Pillow >= 5.2.0",
"aiohttp[speedups]",
"aiohttp-cors",
"Requests >= 2.20.0",
"httpx[http2] >= 0.27.0",
"httpcore > 1.0.3",
"PyYAML >= 4.2b1",
"streamlink >= 6.8.3",
"ykdl >= 1.8.0",
"rsa >= 4.6",
"importlib-resources; python_version < '3.9'",
"tomli >= 1.1.0 ; python_version < '3.11'",
"protobuf >= 4.23.0",
"SQLAlchemy>=2.0.0",
"alembic>=1.12.1",
"m3u8",
]
dynamic = ["version"]
[project.optional-dependencies]
selenium = ["selenium >= 3.8.1"]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.scripts]
biliup = "biliup.__main__:arg_parser"
[tool.setuptools]
license-files = ["LICENSE"]
include-package-data = false
[tool.setuptools.package-data]
biliup = ["common/*.ini", "web/public/**", "web/public/build/*", "database/migration/*", "Danmaku/douyin_util/webmssdk.js"]
[tool.setuptools.packages.find]
include = ["biliup*"]
namespaces = false
[tool.setuptools.dynamic]
version = { attr = "biliup.__version__" }