-
Notifications
You must be signed in to change notification settings - Fork 112
Expand file tree
/
Copy pathpyproject.toml
More file actions
100 lines (88 loc) · 2.62 KB
/
pyproject.toml
File metadata and controls
100 lines (88 loc) · 2.62 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
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
[build-system]
requires = ["setuptools>=46.4.0"]
build-backend = "setuptools.build_meta"
[project]
name = "paradox-alarm-interface"
dynamic = ["version"]
authors = [
{name = "Jevgeni Kiski", email = "yozik04@gmail.com"},
{name = "João Paulo Barraca", email = "jpbarraca@gmail.com"},
]
description = "Interface to Paradox Alarm Panels"
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["paradox", "alarm", "ip150", "serial", "home-assistant", "smarthome", "mqtt"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Eclipse Public License 2.0 (EPL-2.0)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
requires-python = ">=3.8"
dependencies = [
"construct~=2.10.70",
"argparse>=1.4.0",
"python-slugify>=4.0.1",
"pytz>=2021.3",
"paho_mqtt>=2.1.0,<3",
"requests>=2.20.0",
"pyserial-asyncio>=0.4",
]
[project.urls]
Homepage = "https://github.com/ParadoxAlarmInterface/pai"
"Bug Tracker" = "https://github.com/ParadoxAlarmInterface/pai/issues"
[project.scripts]
ip150-connection-decrypt = "paradox.console_scripts.ip150_connection_decrypt:main"
pai-service = "paradox.console_scripts.pai_run:main"
pai-dump-memory = "paradox.console_scripts.pai_dump_memory:main"
[project.optional-dependencies]
YAML = [
"pyyaml>=5.2.0",
]
Pushbullet = [
"pushbullet.py>=0.11.0",
"ws4py>=0.4.2",
]
Signal = [
"pygobject>=3.20.0",
"pydbus>=0.6.0",
"gi>=1.2",
]
[tool.setuptools]
zip-safe = true
[tool.setuptools.packages.find]
exclude = ["tests", "tests.*", "config.*", "docs.*"]
[tool.setuptools.dynamic]
version = {attr = "paradox.__version__"}
[tool.black]
target-version = ["py38", "py39", "py310", "py311", "py312", "py313", "py314"]
exclude = 'generated'
[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 = [
"paradox",
"tests",
]
forced_separate = [
"tests",
]
combine_as_imports = true
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
[tool.coverage.report]
show_missing = true
[tool.codespell]
skip = "*.ipynb"