-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
42 lines (34 loc) · 1.01 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
[tool.poetry]
name = "youtube-up"
version = "0.5.4"
description = "Upload videos to YouTube using the internal YouTube API. Does not require an API key."
authors = ["7x11x13 <[email protected]>"]
readme = "README.md"
repository = "https://github.com/7x11x13/youtube-up"
documentation = "https://7x11x13.xyz/youtube-up/youtube_up"
keywords = ["YouTube", "upload"]
[tool.poetry.dependencies]
python = "^3.10"
selenium = "^4.11.2"
selenium-wire-2 = "^0.2.1"
requests = "^2.32.3"
dataclasses-json = "^0.6.2"
tqdm = "^4.66.1"
[tool.poetry.scripts]
youtube-up = "youtube_up.__main__:main"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
pdoc = { version = "^14.1.0", python = "^3.8" }
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
ruff = "^0.5.0"
mypy = "^1.10.1"
types-tqdm = "^4.66.0.20240417"
types-requests = "^2.32.0.20240622"
[tool.ruff.lint]
select = ["E", "F", "B", "I", "W"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"