-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (41 loc) · 1.33 KB
/
pyproject.toml
File metadata and controls
48 lines (41 loc) · 1.33 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
[project]
name = "powersensor-local"
dynamic = ["version"]
description = "Network-local (non-cloud) interface for Powersensor devices"
authors = [
{ name = "Jade Mattsson", email = "jmattsson@dius.com.au" },
{ name = "Lake Bookman", email = "lbookman@dius.com.au" },
]
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Home Automation",
]
[project.urls]
Repository = "https://github.com/DiUS/python-powersensor_local.git"
Homepage = "https://github.com/DiUS/python-powersensor_local"
Issues = "https://github.com/DiUS/python-powersensor_local/issues"
[project.scripts]
ps-events = "powersensor_local.events:app"
ps-rawplug = "powersensor_local.rawplug:app"
ps-plugevents = "powersensor_local.plugevents:app"
[build-system]
requires = [ "hatchling" ]
build-backend = "hatchling.build"
[project.optional-dependencies]
docs = [
"sphinx>=7.0.0",
"sphinx-rtd-theme>=1.3.0",
"sphinx-autodoc-typehints>=1.24.0",
]
[tool.hatch.version]
path = "src/powersensor_local/__init__.py"
[tool.hatch.build.targets.wheel]
only-packages = true
[tool.hatch.build.targets.sdist]
include = ["src/**", "docs/**", "tests/**", "scripts/**"]
exclude = [ "tests/.coverage" ]