-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (27 loc) · 813 Bytes
/
Copy pathpyproject.toml
File metadata and controls
32 lines (27 loc) · 813 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "dbus_networkdevices"
version = "2026.7.0"
description = "Connected network devices using DBus"
readme = "README.md"
keywords = ["dbus", "ip", "network"]
requires-python = ">=3.7.0"
authors = [
{name="bkbilly", email="bkbilly@hotmail.com"}
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: Unix",
]
dependencies = [
"jeepney>=0.9.0",
]
[project.urls]
"Source Code" = "https://github.com/bkbilly/dbus_networkdevices"
[tool.setuptools.packages.find]
include = ["dbus_networkdevices*"]
[project.scripts]
dbus-networkdevices = "dbus_networkdevices.__main__:main"