-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (58 loc) · 1.73 KB
/
pyproject.toml
File metadata and controls
67 lines (58 loc) · 1.73 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
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "python-homely"
version = "0.1.2"
description = "Async Python client for the Homely cloud API, built for Home Assistant but usable anywhere."
readme = "README.md"
requires-python = ">=3.12"
license = "MIT"
license-files = ["LICENSE"]
authors = [
{ name = "Ludvik Blichfeldt Rød" }
]
keywords = ["homely", "api", "websocket", "asyncio", "home-automation"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Home Automation",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"aiohttp>=3.9.0,<4.0.0",
"python-socketio>=5.11.0,<6.0.0",
]
[project.urls]
Homepage = "https://github.com/ludvikroed/python-homely"
Documentation = "https://github.com/ludvikroed/python-homely#readme"
Source = "https://github.com/ludvikroed/python-homely"
Issues = "https://github.com/ludvikroed/python-homely/issues"
Changelog = "https://github.com/ludvikroed/python-homely/blob/main/CHANGELOG.md"
[project.optional-dependencies]
dev = [
"build>=1.2.2",
"pytest>=8.3.0",
"pytest-asyncio>=0.24.0",
"ruff>=0.8.0",
"twine>=6.0.0",
]
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
homely = ["py.typed"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
cache_dir = "/tmp/python-homely-pytest-cache"
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "I", "B", "UP"]