-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (40 loc) · 1.21 KB
/
pyproject.toml
File metadata and controls
47 lines (40 loc) · 1.21 KB
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
[tool.black]
line-length = 180
[tool.flake8]
# E123, E125 skipped as they are invalid PEP-8.
show-source = true
ignore = "E123,E125,E203,E402,E501,E741,F401,F811,F841,W503"
max-line-length = 180
[tool.isort]
ensure_newline_before_comments = true
extend_skip = [".md", ".json", ".yaml", ".txt"]
force_grid_wrap = false
line_length = 180
multi_line_output = 7
skip_glob = ["docs/*"]
use_parentheses = false
[tool.mypy]
disable_error_code = "assignment,import,import-not-found"
[tool.pyink]
line-length = 180
[tool.pylint."messages control"]
disable = ["duplicate-code", "fixme", "invalid-name", "import-error", "missing-module-docstring", "too-few-public-methods", "too-many-instance-attributes", "too-many-lines", "too-many-public-methods", "too-many-statements"]
[tool.pylint.format]
max-line-length = 180
[project]
name = "ndfc-python"
version = "0.1.0"
description = "Example Python scripts and libraries for interacting with Cisco Nexus Dashboard REST API"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"ansible>=11.9.0",
"black>=25.1.0",
"isort>=6.0.1",
"mkdocs>=1.6.1",
"mkdocs-material>=9.6.17",
"mypy>=1.17.1",
"pydantic>=2.11.7",
"pylint>=3.3.8",
"requests>=2.32.5",
]