-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
47 lines (42 loc) · 1.07 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
[tool.poetry]
name = "myhome"
version = "0.3.0"
description = "Python client library for interacting with Bticino MyHomeSERVER1"
readme = "README.md"
repository = "https://github.com/speijnik/myhome"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Home Automation"
]
authors = ["Stephan Peijnik-Steinwender <speijnik@gmail.com>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.7"
aiohttp = "^3.7.4"
python-dateutil = "^2.8.2"
[tool.poetry.dev-dependencies]
pre-commit = "^2.14.0"
pytest = "^6.2.4"
pytest-cov = "^2.12.1"
urllib3 = "^1.26.6"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
target-version = ["py38"]
exclude = 'myhome/gen'
[tool.isort]
# https://github.com/PyCQA/isort/wiki/isort-Settings
profile = "black"
# will group `import x` and `from x import` of the same module.
force_sort_within_sections = true
known_first_party = [
"myhome",
"tests",
]
forced_separate = [
"tests",
]
combine_as_imports = true