-
Notifications
You must be signed in to change notification settings - Fork 24
/
pyproject.toml
97 lines (84 loc) · 2.41 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
85
86
87
88
89
90
91
92
93
94
95
96
97
[build-system]
requires = ["setuptools>=42"]
build-backend = "setuptools.build_meta"
[project]
name = "puresnmp"
version = "2.0.1"
authors = [
{ name = "Michel Albert", email = "[email protected]" },
{ name = "POST Luxembourg", email = "[email protected]" },
]
description = "Pure Python SNMP implementation"
readme = "README.rst"
keywords = ["networking", "snmp"]
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",
]
license = { text = "MIT" }
requires-python = ">=3.6"
dependencies = [
'dataclasses; python_version < "3.7"',
'importlib_metadata; python_version < "3.8"',
'typing_extensions; python_version < "3.8"',
'x690 >= 1.0, <2.0',
]
[project.optional-dependencies]
readthedocs = ["fabric"]
crypto = ["puresnmp-crypto >= 1.0.1"]
dev = [
'asyncmock; python_version < "3.8"',
"black >= 20.8b1",
"fabric >= 2.6.0",
"furo",
"mypy",
"pylint",
"pytest",
"pytest-asyncio",
"pytest-cov",
"pytest-dependency",
"sphinx",
"types-dataclasses",
]
[project.urls]
Homepage = "https://github.com/exhuma/puresnmp"
"Bug Tracker" = "https://github.com/exhuma/puresnmp/issues"
Repository = "https://github.com/exhuma/puresnmp"
[tool.black]
line-length = 80
[tool.isort]
force_grid_wrap = 0
include_trailing_comma = true
line_length = 80
multi_line_output = 3
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 = ".*(https?://|VarBind|ObjectIdentifier|# type: ignore).*"
[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.pytest.ini_options]
asyncio_mode = "strict"
filterwarnings = ["error"]
minversion = "6.0"
# addopts = "--doctest-modules --cov=puresnmp --cov=puresnmp_plugins --cov-report=term-missing"
testpaths = ["tests", "puresnmp"]