-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
40 lines (35 loc) · 988 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
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "proxmox-grapple"
dynamic = ["version"]
authors = [
{ name="Jason Lingohr", email="[email protected]" },
]
description = "The grappling hook for Proxmox backups."
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
]
dependencies = [
"click",
"daiquiri",
"humanize",
"psutil",
"pyyaml",
"dynaconf",
]
[project.scripts]
proxmox-grapple = "proxmox_grapple.vzdump_hook_script:main"
[project.urls]
Homepage = "https://github.com/lingfish/proxmox-grapple"
Issues = "https://github.com/lingfish/proxmox-grapple/issues"
[tool.setuptools_scm]
version_file = "src/proxmox_grapple/_version.py"
local_scheme = "no-local-version"
[tool.pylint]
max-line-length = 120