forked from napalm-automation-community/napalm-fsos-ssh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
36 lines (33 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
[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",
"Programming Language :: Python :: 3.11",
"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,<3.12"
napalm = ">=4.0,<4.2"
[tool.poetry.group.dev.dependencies]
pytest = "~7.4.4"
ruff = "~0.1.11"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"