-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (25 loc) · 902 Bytes
/
Copy pathpyproject.toml
File metadata and controls
30 lines (25 loc) · 902 Bytes
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
[project]
name = "attacksim"
version = "1.0.0"
description = "AttackSim — automated attacker simulation, CVE verification, AI-powered exploit generation, and interactive triage. Open-source Python penetration testing framework."
requires-python = ">=3.9"
[project.optional-dependencies]
# Optional offensive extras; the core runs on the stdlib alone.
crack = ["bcrypt>=4.0", "passlib>=1.7"]
dev = ["pytest>=7.0", "ruff>=0.4", "mypy>=1.8"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-q"
[tool.ruff]
line-length = 110
target-version = "py39"
[tool.ruff.lint]
select = ["E", "F", "I", "B", "UP"]
ignore = ["E501"] # long lines tolerated in finding text
[tool.mypy]
python_version = "3.9"
ignore_missing_imports = true
warn_unused_ignores = false
check_untyped_defs = true
# Modules receive a duck-typed `target`; full strictness is not the goal here.
disallow_untyped_defs = false