forked from Jc2k/aiohomekit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (37 loc) · 1.03 KB
/
Copy pathpyproject.toml
File metadata and controls
41 lines (37 loc) · 1.03 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
[tool.poetry]
name = "aiohomekit"
version = "0.2.45"
description = "An asyncio HomeKit client"
authors = ["John Carr <john.carr@unrouted.co.uk>"]
license = "Apache-2.0"
readme = "README.md"
homepage = "https://github.com/Jc2k/aiohomekit"
repository = "https://github.com/Jc2k/aiohomekit"
keywords = ["HomeKit", "home", "automation"]
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Topic :: Home Automation",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8"
]
[tool.poetry.dependencies]
python = "^3.7"
cryptography = "^2.8"
zeroconf = {version = ">= 0.26.0"}
[tool.poetry.dev-dependencies]
isort = "^4.3.21"
mypy = "^0.761"
black = "^19.10b0"
flake8 = "^3.7.9"
pytest = "^5.3.5"
coverage = "^5.0.3"
codecov = "^2.0.15"
pylint = "^2.4.4"
pytest-aiohttp = "^0.3.0"
[tool.black]
target-version = ["py37", "py38"]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"