Files
gnmi-eos/pyproject.toml

54 lines
1.2 KiB
TOML

[project]
name = "gnmi-eos"
version = "0.1.0"
description = "gNMI CLI tool and Python library for Arista EOS devices"
readme = "README.md"
requires-python = ">=3.12"
license = { text = "MIT" }
keywords = ["gnmi", "arista", "eos", "yang", "network", "observability"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.12",
"Topic :: System :: Networking",
]
dependencies = [
"click>=8.1.0",
"pygnmi>=0.8.0",
"rich>=13.0.0",
]
[project.scripts]
gnmi-eos = "gnmi_eos.cli:main"
[project.urls]
Repository = "https://gitea.arnodo.fr/Damien/gnmi-eos"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/gnmi_eos"]
[tool.hatch.build.targets.sdist]
include = ["src/gnmi_eos"]
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "I", "W"]
ignore = ["E501"]
[dependency-groups]
dev = [
"basedpyright>=1.37.4",
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"ruff>=0.14.10",
]