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 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
|
[project]
name = "pysnmp"
version = "7.1.22"
description = "A Python library for SNMP"
authors = [
{name = "Ilya Etingof", email = "etingof@gmail.com"},
{name = "LeXtudio Inc.", email = "support@lextudio.com"}
]
license = { text = "BSD-2-Clause" }
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Intended Audience :: Telecommunications Industry",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Communications",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"pyasn1>=0.4.8,!=0.5.0",
]
[project.urls]
Homepage = "https://pysnmp.com"
Repository = "https://github.com/lextudio/pysnmp"
[project.optional-dependencies]
dev = [
"codecov>=2.1.12",
"pytest>=7.2.0",
"pytest-codecov>=0.4.0",
"pytest-cov>=4.1.0",
"pytest-asyncio>=0.21.1",
"Sphinx>=7.0.0,<8.0.0",
"sphinx-copybutton>=0.5.2",
"sphinx-notfound-page>=1.0.0",
"sphinx-sitemap-lextudio>=2.5.2",
"sphinx-polyversion>=1.0.0",
"furo>=2023.1.1",
"pre-commit==2.21.0",
"doc8>=1.0.0",
"flake8>=7.0.0",
"pep8-naming>=0.14.1",
"cryptography>=44.0.1",
"pysmi>=1.6.1",
"bump2version>=1.0.1",
"ruff>=0.11.7",
"jinja2>=3.1.6"
]
[tool.flit.sdist]
exclude = [
"tests/",
"docs/",
"examples/"
]
[build-system]
requires = ["flit_core>=3.9.0"]
build-backend = "flit_core.buildapi"
[tool.ruff]
lint.ignore = ["F401", "F403", "F405"]
preview = true
[tool.flit.module]
packages = ["pysnmp"]
|