forked from ztgrace/changeme
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (61 loc) · 1.16 KB
/
pyproject.toml
File metadata and controls
68 lines (61 loc) · 1.16 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "default-hunter"
version = "1.2.3"
description = "A default credential scanner"
readme = "README.md"
authors = [
{name = "ztgrace"}
]
requires-python = ">=3.10"
license = {text = "GPL3"}
dependencies = [
"argcomplete",
"cerberus",
"jinja2",
"logutils",
"lxml",
"netaddr",
"paramiko",
"psycopg2-binary",
"pymongo",
"pyodbc",
"pysnmp>=7",
"python-libnmap",
"python-memcached",
"pyyaml",
"requests",
"selenium",
"shodan",
"sqlalchemy",
"tabulate",
"telnetlib3>=2.0.8",
]
[project.optional-dependencies]
redis-scanning = [
"redis",
]
[project.scripts]
default-hunter = "default_hunter.core:main"
[tool.setuptools.packages.find]
include = ["default_hunter*"]
[tool.ruff]
line-length = 120
[dependency-groups]
dev = [
"pyright>=1.1.407",
"pytest>=9.0.1",
"responses>=0.25.0",
"ruff>=0.15.11",
]
[tool.pytest.ini_options]
norecursedirs = "tests/shares"
filterwarnings = "ignore::DeprecationWarning"
minversion = "8.0"
addopts = "-ra -q"
pythonpath = "src tests"
testpaths = [
"tests",
]