Skip to content

Commit b3c7774

Browse files
committed
去除poetry
1 parent 131c3b9 commit b3c7774

File tree

1 file changed

+23
-29
lines changed

1 file changed

+23
-29
lines changed

pyproject.toml

+23-29
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,29 @@
1-
[tool.poetry]
2-
name = "live_recorder"
3-
version = "v2.21"
1+
[project]
2+
name = "LiveRecorder"
3+
version = "0.1.0"
44
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"
69
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"}
1011
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+
]
1122

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"
3226

3327
[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

Comments
 (0)