-
Notifications
You must be signed in to change notification settings - Fork 175
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (43 loc) · 1.28 KB
/
Copy pathpyproject.toml
File metadata and controls
49 lines (43 loc) · 1.28 KB
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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool]
[tool.poetry]
name = "catt"
version = "0.13.2"
description = "Cast All The Things allows you to send videos from many, many online sources to your Chromecast."
license = "BSD"
keywords = ["chromecast", "cast", "catt", "cast_all_the_things"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
homepage = "https://github.com/skorokithakis/catt"
authors = ["Stavros Korokithakis <hi@stavros.io>"]
readme = "README.md"
[tool.poetry.scripts]
catt = "catt.cli:main"
[tool.poetry.dependencies]
python = ">=3.11"
click = ">=7.1.2"
ifaddr = ">=0.1.7"
pychromecast = ">=14.0.1, <15"
requests = ">=2.23.0"
yt-dlp = ">=2023.3.4"
[tool.poetry.group.dev.dependencies]
coverage = "*"
mypy = "*"
pre-commit = "*"
pytest = "*"
sphinx = "==1.3.1"
tox = ">=3.13.2"
virtualenv = ">=20.0.8"
wheel = "*"
[tool.ruff]
lint.ignore = ["F403", "E501", "N802", "N803", "N806", "C901", "D100", "D102", "D102", "D10"]