-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (40 loc) · 981 Bytes
/
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
[project]
name = "kasabuttons"
version = "0.3.0"
description = "Add your description here"
authors = [{ name = "swilcox", email = "[email protected]" }]
dependencies = [
"python-kasa>=0.7.6",
"pynput>=1.7.7",
"python-dotenv>=1.0.1",
"pydantic-settings>=2.2.1",
"loguru>=0.7.2",
"loki-logger-handler>=0.1.4",
"requests>=2.32.3",
"loguru-config>=0.1.0",
"pyyaml>=6.0.1",
"click>=8.1.7",
"keyboard>=0.13.5",
]
readme = "README.md"
requires-python = ">= 3.11"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.scripts]
kasa-buttons = "kasabuttons.kasa_cli:main"
[tool.rye]
managed = true
dev-dependencies = [
"ipython>=8.24.0",
"pytest>=8.2.1",
"pytest-asyncio>=0.23.7",
"asyncmock>=0.4.2",
"pytest-cov>=5.0.0",
]
[tool.ruff.lint]
select = ["F", "E", "W", "I"]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/kasabuttons"]