-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
44 lines (40 loc) · 1.01 KB
/
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
[build-system]
requires = [
"setuptools",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = "netbox-config-backup"
authors = [
{name = "Daniel Sheppard", email = "[email protected]"}
]
maintainers = [
{name = "Daniel Sheppard", email = "[email protected]"},
]
description = "A NetBox Switch Configuration Backup Plugin"
readme = "README.md"
requires-python = ">=3.10"
keywords = ["netbox-plugin", ]
version = "2.1.2-alpha1"
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
'netbox-napalm-plugin',
'netmiko>=4.0.0',
'napalm',
'uuid',
'dulwich',
'pydriller',
'deepdiff',
]
[project.urls]
Documentation = "https://github.com/dansheps/netbox-config-backup/blob/main/README.md"
Source = "https://github.com/dansheps/netbox-config-backup"
Tracker = "https://github.com/dansheps/netbox-config-backup/issues"
[tool.setuptools.packages.find]
exclude=["netbox_config_backup.tests"]
[tool.black]
skip-string-normalization = 1