-
Notifications
You must be signed in to change notification settings - Fork 158
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (33 loc) · 871 Bytes
/
pyproject.toml
File metadata and controls
38 lines (33 loc) · 871 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
31
32
33
34
35
36
37
38
[project]
name = "man-spider"
version = "2.0.0"
description = "Full-featured SMB spider capable of searching file content"
authors = [
{name = "TheTechromancer"}
]
license = {text = "GPL-3.0"}
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"kreuzberg",
"impacket",
"charset-normalizer",
]
[project.urls]
Repository = "https://github.com/blacklanternsecurity/MANSPIDER"
Homepage = "https://github.com/blacklanternsecurity/MANSPIDER"
[project.scripts]
manspider = "man_spider.manspider:main"
[tool.ruff]
line-length = 119
exclude = ["kreuzberg", "uv", ".venv"]
lint.select = ["E", "F"]
lint.ignore = ["E402", "E711", "E712", "E713", "E721", "E722", "E741", "F403", "F405", "F841", "E501"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"pytest>=9.0.2",
"ruff>=0.15.0",
]