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
|
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.backends._legacy:_Backend"
[project]
name = "yt-local"
description = "Privacy-focused, browser-based YouTube client with Tor support"
readme = "README.md"
requires-python = ">=3.11"
license = { text = "AGPL-3.0-only" }
authors = [
{ name = "heckyel", email = "heckyel@riseup.net" },
]
dependencies = [
"flask>=1.0.3",
"flask-babel>=4.0.0",
"babel>=2.12.0",
"gevent>=1.2.2",
"brotli>=1.0.7",
"pysocks>=1.6.8",
"urllib3>=1.24.1",
"defusedxml>=0.5.0",
"cachetools>=4.0.0",
"stem>=1.8.0",
"requests>=2.25.0",
]
[project.optional-dependencies]
dev = ["pytest>=6.2.1"]
[tool.pip-tools]
generate-hashes = true
|