-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
55 lines (46 loc) · 1021 Bytes
/
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
[tool.poetry]
name = "dehydrated"
version = "0.1.1"
description = "Wrapper for 'thc-hydra' bruteforce tool"
authors = ["Ivan Zatevakhin"]
keywords = ["thc-hydra", "bruteforce", "wrapper"]
homepage = "https://github.com/zatevakhin/dehydrated"
documentation = "https://github.com/zatevakhin/dehydrated"
readme = "README.md"
license = "Apache-2.0"
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
pydantic = { version = "^2.4.2" }
[tool.poetry.dev-dependencies]
isort = { version = "<5.10.2,>=5.3.2" }
black = { version = "22.3.0" }
pytest = { version = "^7.2.0" }
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 120
[tool.black]
line-length = 120
target-version = ["py39"]
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
)
'''
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"