forked from napalm-automation-community/napalm-fsos-ssh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
38 lines (34 loc) · 1.05 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
[tool.poetry]
name = "napalm-fsos-ssh"
version = "0"
description = "Napalm driver for FSOS through SSH"
authors = ["Ludovic Ortega <[email protected]>"]
license = "CeCILL"
readme = "README.md"
homepage = "https://github.com/napalm-automation-community/napalm-fsos-ssh"
repository = "https://github.com/napalm-automation-community/napalm-fsos-ssh"
keywords = ["napalm", "fsos", "netmiko"]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
"License :: OSI Approved :: CEA CNRS Inria Logiciel Libre License, version 2.1 (CeCILL-2.1)",
"Topic :: Utilities",
]
include = [
"LICENSE",
"LICENSE.fr",
]
[tool.poetry.dependencies]
python = "^3.8"
napalm = "^4.0.0"
[tool.poetry.dev-dependencies]
pytest = "^7.1.3"
pre-commit = "^2.20.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry-version-plugin]
source = "git-tag"