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 = ["setuptools>=65.6,<83.0", "wheel>=0.37.1,<0.47.0"]
build-backend = "setuptools.build_meta"
[project]
name = "PyChromecast"
version = "14.0.10"
license = {text = "MIT"}
description = "Python module to talk to Google Chromecast."
readme = "README.rst"
authors = [
{name = "Paulus Schoutsen", email = "paulus@paulusschoutsen.nl"}
]
requires-python = ">=3.11.0"
dependencies = [
"protobuf>=4.25.1",
"zeroconf>=0.25.1",
"casttube>=0.2.0",
]
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
[project.urls]
"Homepage" = "https://github.com/home-assistant-libs/pychromecast"
[tool.ruff]
exclude = ['*_pb2.*']
[tool.rstcheck]
# README.rst has embedded python examples which show the interactive interpreter output
# that's not valid Python, so we disable the check
ignore_languages = ["python"]
[tool.setuptools]
platforms = ["any"]
zip-safe = false
include-package-data = true
[tool.setuptools.packages.find]
include = ["pychromecast*"]
[tool.setuptools.package-data]
"*" = ["py.typed"]
[dependency-groups]
dev = [
"pre-commit>=4.5.0",
]
|