-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (39 loc) · 1.11 KB
/
Copy pathpyproject.toml
File metadata and controls
47 lines (39 loc) · 1.11 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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "poolctl"
version = "0.3.0"
description = "Terminal-first Pentair ScreenLogic inspection and guarded control"
readme = "README.md"
requires-python = ">=3.11"
license = "MIT"
authors = [{name = "Chris Berry"}]
keywords = ["pentair", "screenlogic", "pool", "home-automation", "cli"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Home Automation",
]
dependencies = [
"screenlogicpy==0.10.2",
]
[project.optional-dependencies]
dev = ["detect-secrets>=1.5,<2", "pytest>=8,<9", "ruff>=0.9,<1"]
[project.urls]
Homepage = "https://github.com/cnberry/poolctl"
Issues = "https://github.com/cnberry/poolctl/issues"
[project.scripts]
poolctl = "poolctl.cli:main"
[tool.setuptools]
packages = ["poolctl"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "I"]