forked from exhuma/puresnmp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
84 lines (73 loc) · 1.88 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[tool.black]
line_length = 80
[tool.isort]
force_grid_wrap = 0
include_trailing_comma = true
known_third_party = ["schema", "floss", "jargon"]
line_length = 80
multi_line_output = 3
not_skip = "__init__.py"
use_parentheses = true
virtual_env = "env"
[tool.pylint."messages control"]
disable = ["C0330", "C0326", "duplicate-code", "fixme"]
[tool.pylint.format]
max-line-length = 80
ignore-long-lines = "(^\\s*(#)?<?https?://\\S+>?$|.*VarBind.*ObjectIdentifier.*|# TODO|# type:)"
[tool.pylint.master]
ignore = [".git", "env"]
[tool.pylint.basic]
good-names = [
"i",
"j",
"k",
"n",
"m",
"ex",
"ip",
"Run",
"_"
]
[tool.pylint.reports]
output-format = "colorized"
reports = "no"
[tool.pylint.design]
max-locals = 25
max-args = 8
[tool.poetry]
name = "puresnmp"
version = "1.11.0"
description = "Pure Python SNMP implementation"
authors = ["Michel Albert <[email protected]>"]
license = "MIT"
readme = "README.rst"
homepage = "https://github.com/exhuma/puresnmp"
repository = "https://github.com/exhuma/puresnmp"
keywords = ["networking", "snmp"]
include = ["puresnmp/py.typed"]
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: System :: Networking",
"Topic :: System :: Networking :: Monitoring",
"Topic :: System :: Systems Administration",
]
[tool.poetry.dependencies]
python = "^3.6"
t61codec = "^1.0.1"
x690 = "~0.2.0"
dataclasses = {version = "^0.7", python = "<3.7"}
[tool.poetry.dev-dependencies]
pytest = "^6.1.1"
pytest-asyncio = "^0.14.0"
sphinx = "^3.2.1"
sphinx-rtd-theme = "^0.5.0"
pylint = "^2.6.0"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"