-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (54 loc) · 1.68 KB
/
Copy pathpyproject.toml
File metadata and controls
61 lines (54 loc) · 1.68 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
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "sfhound"
version = "2.0.3"
description = "Six Degrees of System Administrator — Salesforce attack path analysis for BloodHound"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.9"
authors = [{ name = "Khadinxc", email = "contact@kaibersec.com" }]
keywords = ["salesforce", "bloodhound", "attack-path", "security", "pentest"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Security",
]
dependencies = [
"requests>=2.32.5",
"PyJWT>=2.10.1",
"pyaml>=26.2.1",
"cryptography>=45.0.6",
"bhopengraph>=1.3.1",
]
[project.urls]
Homepage = "https://sfhound.kaibersec.com"
Repository = "https://github.com/Khadinxc/sfhound"
"Bug Tracker" = "https://github.com/Khadinxc/sfhound/issues"
[project.scripts]
sfhound = "sfhound.sfhound:main"
[project.optional-dependencies]
dev = [
"pytest>=7.4",
"pytest-timeout>=2.3",
]
[tool.setuptools.packages.find]
include = ["sfhound*"]
[tool.setuptools.package-data]
sfhound = ["config.yaml.example"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-rs"
# Per-test timeout (seconds). Increase for slow orgs or large graphs.
timeout = 600
markers = [
"slow: marks tests as slow (full extraction or BH upload)",
]