-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
26 lines (23 loc) · 922 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "SysAdminToolbox"
version = "1.0.0"
description = "Versatile tool designed for network administration, providing a wide range of useful calculations."
authors = [{ name = "Franck Ferman", email = "[email protected]" }]
license = { file = "LICENSE" }
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Topic :: System :: Networking",
"Topic :: Utilities"
]
readme = { file = "README.md", content-type = "text/markdown" }
keywords = ["networking", "administration", "sysadmin", "tools", "utilities"]
requires-python = ">=3.9"
[project.urls]
Homepage = "https://github.com/franckferman/SysAdminToolbox"
[project.scripts]
SysAdminToolbox = "SysAdminToolbox.SysAdminToolbox:main"