-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
73 lines (63 loc) · 1.61 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
[project]
requires-python = ">=3.11"
name = "yanimt"
[tool.poetry]
name = "yanimt"
version = "0.0.4"
description = "Yet another impacket tool"
authors = ["Headorteil"]
homepage = "https://github.com/Headorteil/yanimt"
repository = "https://github.com/Headorteil/yanimt"
readme = "README.md"
license = "MIT"
classifiers = [
'Environment :: Console',
'Programming Language :: Python :: 3',
'Topic :: Security',
]
[tool.poetry.dependencies]
python = "^3.11"
impacket = "^0.11.0"
typer = "^0.12.3"
dnspython = "^2.7.0"
textual = "^0.86.2"
sqlalchemy = "^2.0.36"
pyyaml = "^6.0.2"
[tool.poetry.scripts]
yanimt = 'yanimt.cli:app'
[tool.poetry.group.dev.dependencies]
ruff = "^0.6.4"
pre-commit = "^4.0.1"
textual-dev = "^1.7.0"
types-pyyaml = "^6.0.12.20240917"
types-ldap3 = "^2.9.13.20240205"
pyright = "^1.1.389"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pyright]
include = ["yanimt"]
venvPath = "."
venv = ".venv"
typeCheckingMode = "strict"
reportUnknownVariableType = false
reportUnknownMemberType = false
reportUnknownArgumentType = false
[tool.ruff]
src = ["yanimt"]
[tool.ruff.lint]
select = ["ALL"]
ignore = [
"COM812", # Conflicts with formatter
"ISC001", # Conflicts with formatter
"D203", # Conflicts with D211
"D213", # Conflicts with D212
"D", # Docstrings
"BLE001", # Blind exceptions
"C901", # Function too complex
"E501", # Line too long
"FBT001", # Boolean positional argument
"FBT002", # Boolean positional argument
"FBT003", # Boolean positional argument
"PLR09", # Too many ...
]