|
1 |
| -[tool.poetry] |
2 |
| -name = "live_recorder" |
3 |
| -version = "v2.21" |
| 1 | +[project] |
| 2 | +name = "LiveRecorder" |
| 3 | +version = "0.1.0" |
4 | 4 | description = "基于Streamlink的全自动直播录制工具,已支持哔哩哔哩、斗鱼、虎牙、抖音、YouTube、Twitch等"
|
5 |
| -authors = [ "auqhjjqdo <[email protected]>"] |
| 5 | +authors = [ |
| 6 | + { name = "auqhjjqdo", email = "[email protected]"}, |
| 7 | +] |
| 8 | +requires-python = ">=3.8,<3.11" |
6 | 9 | readme = "README.md"
|
7 |
| -license = "MIT" |
8 |
| -repository = "https://github.com/auqhjjqdo/LiveRecorder" |
9 |
| -documentation = "https://github.com/auqhjjqdo/LiveRecorder#readme" |
| 10 | +license = {text = "MIT"} |
10 | 11 | keywords = ["LiveRecorder", "Live", "Streamlink", "Bilibili", "Douyu", "Douyin", "YouTube", "Twitch"]
|
| 12 | +dependencies = [ |
| 13 | + "streamlink>=6.2.0", |
| 14 | + "httpx[http2]>=0.25.0", |
| 15 | + "ffmpeg-python>=0.2.0", |
| 16 | + "loguru>=0.7.2", |
| 17 | + "jsonpath-ng>=1.6.0", |
| 18 | + "jsengine>=1.0.7.post1", |
| 19 | + "quickjs>=1.19.2", |
| 20 | + "tenacity>=8.2.3" |
| 21 | +] |
11 | 22 |
|
12 |
| - |
13 |
| -[tool.poetry.dependencies] |
14 |
| -python = "^3.8" |
15 |
| -streamlink = "^6.1.0" |
16 |
| -#streamlink = { git = "https://github.com/streamlink/streamlink" } |
17 |
| -httpx = { extras = ["http2"], version = "^0.24.1" } |
18 |
| -ffmpeg-python = "^0.2.0" |
19 |
| -loguru = "^0.7.0" |
20 |
| -jsonpath-ng = "^1.5.3" |
21 |
| -jsengine = "^1.0.7.post1" |
22 |
| -quickjs = "^1.19.2" |
23 |
| -tenacity = "^8.2.2" |
24 |
| -#https://github.com/JamzumSum/socksio |
25 |
| -socksio = { path = "build/socksio-1.0.0-py3-none-any.whl" } |
26 |
| - |
27 |
| - |
28 |
| -[[tool.poetry.source]] |
29 |
| -name = "mirrors" |
30 |
| -url = "https://pypi.tuna.tsinghua.edu.cn/simple/" |
31 |
| -priority = "default" |
| 23 | +[project.urls] |
| 24 | +repository = "https://github.com/auqhjjqdo/LiveRecorder" |
| 25 | +documentation = "https://github.com/auqhjjqdo/LiveRecorder#readme" |
32 | 26 |
|
33 | 27 | [build-system]
|
34 |
| -requires = ["poetry-core"] |
35 |
| -build-backend = "poetry.core.masonry.api" |
| 28 | +requires = ["setuptools>=61", "wheel"] |
| 29 | +build-backend = "setuptools.build_meta" |
0 commit comments