-
Notifications
You must be signed in to change notification settings - Fork 436
Expand file tree
/
Copy pathpyproject.toml
More file actions
109 lines (98 loc) · 2.74 KB
/
pyproject.toml
File metadata and controls
109 lines (98 loc) · 2.74 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
101
102
103
104
105
106
107
108
109
[project]
name = "appdaemon"
description = "Apps for the Home Assistant home automation package."
readme = "README.md"
authors = [
{name = "Andrew I Cockburn", email = "appdaemon@acockburn.com"}
]
version = "4.5.14"
license-files = [ "LICENSE.md" ]
requires-python = ">=3.10,<3.14"
keywords=[ "appdaemon", "home", "automation" ]
dependencies = [
"aiohttp >= 3.9.0",
"aiohttp_jinja2>=1.5.1",
"astral>=3.2",
"bcrypt>=4.0.1",
"deepdiff>=8.2.0",
"feedparser>=6.0.10",
"paho-mqtt>=1.6.1,<3",
"pid>=3.0.4",
"python-dateutil>=2.8.2",
"python-socketio>=5.5",
"pytz>=2022.7.1",
"pyyaml>=6.0.1",
"requests>=2.28.2",
"sockjs>=0.11",
"uvloop>=0.21.0; sys_platform != 'win32'",
"tomli>=2.2.1",
"tomli_w>=1.0",
"pydantic>=2.10.6,<3"
]
classifiers= [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Home Automation",
"Typing :: Typed",
]
[project.urls]
documentation = "https://appdaemon.readthedocs.io"
repository = "https://github.com/AppDaemon"
changelog = "https://github.com/AppDaemon/appdaemon/blob/master/docs/HISTORY.rst"
[dependency-groups]
dev = [
"build>=1.2.1",
"gitpython>=3.1.43",
"pre-commit>=3.8.0",
"rich>=13.8.0",
"ruff>=0.6.3",
]
test = [
"pytest>=8.3.2",
"pytest-asyncio>=1.0.0",
]
jupyter = [
"ipykernel>=6.29.5",
"notebook>=7.3.2",
]
# Dependencies required to build the documentation using sphinx
doc = [
"myst-parser>=4.0.0",
"sphinx-autobuild>=2021.3.14",
"sphinx-rtd-theme>=3.0.2",
"sphinx-copybutton>=0.5.2",
"pygments>=2.14",
"pytest>=8.3.2",
"pytest-asyncio>=1.0.0",
]
# Define the main CLI script
[project.scripts]
appdaemon = "appdaemon.__main__:main"
[build-system]
requires = ["uv_build>=0.9.26,<0.11.0"]
build-backend = "uv_build"
[tool.uv.build-backend]
module-name = "appdaemon"
module-root = ""
# https://docs.pytest.org/en/stable/explanation/goodpractices.html
[tool.pytest.ini_options]
asyncio_mode = "strict"
asyncio_default_test_loop_scope = "session"
asyncio_default_fixture_loop_scope = "session"
addopts = ["--import-mode=importlib"]
markers = [
"ci: mark test to run in CI environment",
"functional: mark test as functional test",
"unit: mark test as unit test"
]
[tool.codespell]
# Ref: https://github.com/codespell-project/codespell#using-a-config-file
skip = ".git*,*.svg,*.css,*.min.*,*.map,assets,.venv*,.docs_build,*.js"
check-hidden = true
# ignore-regex = ""
ignore-words-list = "hass,noone,dependee,dependees,whet,controle"