forked from fredrike/pydaikin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
71 lines (65 loc) · 1.87 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
authors = [
{ name = "Fredrik Erlandsson", email = "[email protected]" },
{ name = "Yari Adan", email = "[email protected]" },
]
name = "pydaikin"
version = "2.13.8"
description = "Python Daikin HVAC appliances interface"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Home Automation",
]
dependencies = ['netifaces', 'aiohttp', 'urllib3', 'tenacity']
requires-python = ">= 3.11"
readme = "README.md"
maintainers = [
{ name = "Fredrik Erlandsson", email = "[email protected]" },
{ name = "Matthias Lemainque", email = "[email protected]" },
]
[project.urls]
Homepage = "https://github.com/fredrike/pydaikin"
Repository = "https://github.com/fredrike/pydaikin.git"
Issues = "https://github.com/fredrike/pydaikin/issues"
[tool.setuptools]
script-files = ['bin/pydaikin']
[tool.black]
skip-string-normalization = true
target-version = ["py311", "py312", "py313"]
include = '\.pyi?$|pydaikin$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.pytype]
python_version = 3.11
[tool.isort]
include_trailing_comma=true
use_parentheses=true
sections = ["FUTURE","STDLIB","THIRDPARTY","FIRSTPARTY","LOCALFOLDER"]
default_section = "THIRDPARTY"
known_first_party = "pydaikin"
# https://github.com/timothycrosley/isort
# https://github.com/timothycrosley/isort/wiki/isort-Settings
# splits long import on multiple lines indented by 4 spaces
multi_line_output = 3
force_grid_wrap = 0
line_length = 88
indent = " "
# will group `import x` and `from x import` of the same module.
force_sort_within_sections = true