-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
48 lines (44 loc) · 957 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
47
48
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
py-modules = []
[project]
requires-python = ">=3.9"
name = "wlanpi-rxg-agent"
authors = [
{name = "Michael Ketchel", email = "[email protected]"},
{name = "Michael Ketchel", email = "[email protected]"},
]
maintainers = [
{name = "Michael Ketchel", email = "[email protected]"},
{name = "Michael Ketchel", email = "[email protected]"},
]
dynamic=["version", "description", "license", "urls", "classifiers"]
#version = "1.0.0-0"
dependencies = [
"requests",
"schedule",
"pydantic-settings",
"python-daemon",
"toml",
"dbus-python",
"PyGObject"
]
[project.optional-dependencies]
dev = [
"mypy",
"black",
"types-paho-mqtt",
"types-requests",
"types-toml",
]
test = [
"black",
"flake8",
"mypy",
"autoflake",
"pytest",
"pytest-cov",
"pytest-mock",
]