forked from lextudio/pysnmp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
61 lines (53 loc) · 1.67 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[tool.poetry]
name = "pysnmp-lextudio"
version = "6.1.2"
description = "A Python library for SNMP"
authors = ["Ilya Etingof <[email protected]>", "LeXtudio Inc. <[email protected]>"]
license = "BSD-2-Clause"
repository = "https://github.com/lextudio/pysnmp"
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",
"Topic :: Communications",
"Topic :: Software Development :: Libraries :: Python Modules",
]
readme = "README.md"
packages = [
{ include = "pysnmp" },
]
include = ["docs", "tests", "examples"]
[tool.poetry.dependencies]
python = "^3.8"
pyasn1 = ">=0.4.8, !=0.5.0"
pysnmpcrypto = "^0.0.4"
pysmi-lextudio = "^1.3.0"
pytest-cov = "^4.0.0"
[tool.poetry.group.dev.dependencies]
codecov = "^2.1.12"
pytest = "^7.2.0"
pytest-codecov = "^0.4.0"
pytest-cov = "^4.1.0"
pytest-asyncio = "^0.21.1"
Sphinx = "^5.0.0"
sphinx-copybutton = "^0.5.2"
furo = "^2023.1.1"
sphinx-sitemap-lextudio = "^2.5.2"
black = "23.1.0"
pre-commit = "2.21.0"
doc8 = "^1.0.0"
sphinx-notfound-page = "^1.0.0"
[tool.poetry_bumpversion.file."pysnmp/__init__.py"]
[tool.poetry_bumpversion.file."docs/source/conf.py"]
search = "release = \"{current_version}\""
replace = "release = \"{new_version}\""
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.esbonio.sphinx]
buildCommand = ["sphinx-build", "-M", "html", "./docs/source", "./docs/build"]