-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (40 loc) · 846 Bytes
/
Copy pathpyproject.toml
File metadata and controls
45 lines (40 loc) · 846 Bytes
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "nutalert"
version = "2.0.3"
description = "nutalert ups monitoring and alert system"
authors = [
{name = "Rasool Fatemi", email = "rmfatemi@gmail.com"},
]
readme = "README.md"
requires-python = ">=3.11,<4.0"
dependencies = [
"pyyaml>=6.0",
"apprise>=1.13.1",
"paho-mqtt>=2.0.0",
"plotly>=7.0.0",
"nicegui>=3.16.0",
"pydantic>=2.13.5",
"ruamel-yaml>=0.19.1,<0.20.0",
]
[project.scripts]
nutalert = "nutalert.app:main"
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pre-commit>=4.2.0",
"deptry>=0.23.0",
]
[tool.black]
target-version = ["py311"]
preview = true
line-length = 120
[tool.ruff]
target-version = "py311"
line-length = 120
include = [
"nutalert/**/*.py",
"*.py"
]