-
Notifications
You must be signed in to change notification settings - Fork 379
/
pyproject.toml
48 lines (41 loc) · 1.24 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
[build-system]
requires = ["setuptools>=65.6,<76.0", "wheel>=0.37.1,<0.46.0"]
build-backend = "setuptools.build_meta"
[project]
name = "PyChromecast"
version = "14.0.5"
description = "Python module to talk to Google Chromecast."
readme = "README.rst"
authors = [
{name = "Paulus Schoutsen", email = "[email protected]"}
]
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",
]
[project.urls]
"Homepage" = "https://github.com/home-assistant-libs/pychromecast"
[tool.black]
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"]