-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (46 loc) · 1.15 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
[tool.poetry]
name = "zentinel"
version = "0.0.3"
description = "Asynchronous port scanning with python"
authors = ["symonk <[email protected]>"]
license = "Apache License 2.0"
readme = "README.rst"
[tool.poetry.dependencies]
python = "^3.8"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.1"
codecov = "^2.1.12"
ipython = "^8.9.0"
pre-commit = "^3.0.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
multi_line_output = 2
include_trailing_comma = true
force_grid_wrap = -1
use_parentheses = true
ensure_newline_before_comments = true
line_length = 120
force_single_line = true
known_first_party = "zentinel"
default_section = "THIRDPARTY"
forced_separate = "tests"
skip = ".tox,.eggs,ci/templates"
[mypy]
mypy_path = "zentinel"
check_untyped_defs = true
disallow_any_generics = true
ignore_missing_imports = true
no_implicit_optional = true
show_error_codes = true
strict_equality = true
warn_redundant_casts = true
warn_return_any = true
warn_unreachable = true
warn_unused_configs = true
no_implicit_reexport = false
ignore_errors = false
[flake8]
max-line-length = 120
exclude = ".tox,.eggs,ci/templates"