-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
160 lines (141 loc) · 4.21 KB
/
pyproject.toml
File metadata and controls
160 lines (141 loc) · 4.21 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "osintbuddy"
authors = [
{name = "jerlendds", email = "jerlendds@osintbuddy.com"},
]
description = "The OSINTBuddy plugins framework for graph-based information analysis and offline local-first investigative workflows."
readme = "README.md"
license = {text = "MIT"}
classifiers = [
"Framework :: AsyncIO",
"Environment :: Console",
"Natural Language :: English",
"Topic :: Software Development",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
"Development Status :: 4 - Beta",
"Intended Audience :: End Users/Desktop",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Security",
"Topic :: System :: Archiving",
"Topic :: System :: Networking :: Monitoring",
"Topic :: Utilities"
]
keywords = ["osint", "open source intelligence", "transform-pipeline", "intelligence", "plugins", "graph", "crawl", "crawling", "web", "scraping", "security", "reconnaissance","enrichment", "entity", "analysis", "investigation", "threat", "attribution", "cti", "threat-hunting", "recon", "attack-surface", "entity-resolution", "knowledge-graph", "plugin-framework", "extensible", "python-plugins", "investigative-journalism", "research-tools", "digital-investigations", "provenance", "compliance", "local-first", "offline", "browser-automation", "maltego"]
requires-python = ">=3.13"
dynamic = ["version"]
dependencies = [
"pydantic>=2.12.5",
"packaging>=21.0",
"httpx[http2]>=0.28.1",
"beautifulsoup4>=4.14.3",
"rich>=14.2.0",
"dulwich>=1.1.0",
]
[project.optional-dependencies]
# Development dependencies
dev = [
"pytest>=9.0.2",
"pytest-asyncio>=1.3.0",
"ruff>=0.14.11",
"mypy>=1.19.0",
"black>=25.12.0",
"pytest-cov>=7.0.0",
]
# Browser automation, used by some default OSINTBuddy plugins
all = [
"selenium>=4.39.0",
"playwright>=1.57.0",
]
[dependency-groups]
dev = [
"pytest>=9.0.2",
"pytest-asyncio>=1.3.0",
"ruff>=0.14.11",
"mypy>=1.19.0",
"black>=25.12.0",
"pytest-cov>=7.0.0",
"selenium>=4.39.0",
"playwright>=1.57.0",
"pydantic>=2.12.5",
"packaging>=21.0",
"httpx[http2]>=0.28.1",
"beautifulsoup4>=4.14.3",
"rich>=14.2.0",
"dulwich>=1.1.0",
"pyinstaller>=6.19.0",
]
[project.urls]
Homepage = "https://osintbuddy.com"
Documentation = "https://docs.osintbuddy.com/"
Repository = "https://github.com/osintbuddy/osintbuddy"
Source = "https://github.com/osintbuddy/plugins"
Tracker = "https://github.com/osintbuddy/osintbuddy/issues"
Changelog = "https://github.com/osintbuddy/plugins/releases"
[project.scripts]
ob = "osintbuddy.ob:main"
[tool.flit.module]
name = "osintbuddy"
[tool.ruff]
line-length = 120
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "W", "I", "UP", "B", "C4"]
ignore = ["E501", "B008"]
[tool.mypy]
python_version = "3.13"
warn_return_any = true
warn_unused_ignores = true
disallow_untyped_defs = false
check_untyped_defs = true
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
addopts = "-v"
pythonpath = ["src"]
markers = [
"integration: marks as integration test",
"slow: marks tests as slow",
"unit: fast offline tests",
]
[tool.black]
line-length = 120
target-version = ['py311', 'py312']
[tool.coverage.run]
branch = true
source = ["src/osintbuddy"]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"def __repr__",
"raise NotImplementedError",
"if TYPE_CHECKING:",
]
[tool.bandit]
exclude_dirs = ["build", "dist", "tests", "scripts"]
number = 4
recursive = true
targets = "src"
[tool.pyright]
include = ["src"]
exclude = [
"**/node_modules",
"**/__pycache__",
]
pythonVersion = "3.13"
pythonPlatform = "Linux"
typeCheckingMode = "basic"
reportMissingImports = true
reportMissingTypeStubs = false
[tool.hatch.build.targets.sdist.force-include]
"bin/ob.py" = "osintbuddy/ob.py"
[tool.hatch.build.targets.wheel.force-include]
"bin/ob.py" = "osintbuddy/ob.py"