forked from biliup/biliup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
51 lines (43 loc) · 1.21 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
[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.7"
dependencies = [
"tomli_w>=1.0.0",
"stream-gears >= 0.1.12",
"psutil >= 5.4.6",
"yt_dlp >= 2022.3.8.2",
"Pillow >= 5.2.0",
"aiohttp[speedups]",
"Requests >= 2.20.0",
"PyYAML >= 4.2b1",
"streamlink >= 0.14.2",
"ykdl >= 1.8.0",
"rsa >= 4.6",
'importlib-resources; python_version<"3.9"',
'tomli >= 1.1.0 ; python_version < "3.11"',
]
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/*"]
[tool.setuptools.packages.find]
include = ["biliup*"]
namespaces = false
[tool.setuptools.dynamic]
version = {attr = "biliup.__version__"}