forked from alandtse/alexa_media_player
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
54 lines (49 loc) · 1.23 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
[tool.poetry]
name = "alexa_media_player"
version = "4.1.2"
description = "This is a custom component to allow control of Amazon Alexa devices in [Homeassistant](https://home-assistant.io) using the unofficial Alexa API."
authors = ["Keaton Taylor <[email protected]>","Alan D. Tse <[email protected]>"]
license = "Apache-2.0"
[tool.poetry.dependencies]
python = "^3.8"
alexapy = "1.26.3"
packaging = ">=20.3"
wrapt = ">=1.12.1"
[tool.poetry.dev-dependencies]
pre-commit = ">2.10.1"
flake8 = "*"
mypy = "*"
pydocstyle = "*"
pylint = "*"
pytest-cov = "*"
safety = ">1.8.7"
black = {version = ">20.8b1", allow-prereleases = true}
pytest = ">6.2.2"
# homeassistant = ">=2021.11.4"
codespell = ">2.0.0"
yamllint = ">1.26.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 88
target-version = ['py38']
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
| deps
| alexapy/aiohttp # also separately exclude a file named deps in
# the root of the project
)
'''