-
Notifications
You must be signed in to change notification settings - Fork 155
/
pyproject.toml
55 lines (49 loc) · 1.39 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
43
44
45
46
47
48
49
50
51
52
53
54
55
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool]
[tool.poetry]
name = "catt"
version = "0.12.12"
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.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
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.7"
click = ">=7.1.2"
ifaddr = ">=0.1.7"
pychromecast = ">=14.0.1, <15"
requests = ">=2.23.0"
yt-dlp = ">=2023.3.4"
[tool.poetry.dev-dependencies]
coverage = "*"
flake8 = "*"
gitchangelog = "*"
isort = "*"
mypy = "*"
pep8-naming = "*"
pre-commit = "*"
pystache = "*"
pytest = "*"
sphinx = "==1.3.1"
tox = ">=3.13.2"
virtualenv = ">=20.0.8"
wheel = "*"
[tool.ruff]
ignore = ["F403", "E501", "N802", "N803", "N806", "C901", "D100", "D102", "D102", "D10"]