-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathpyproject.toml
More file actions
93 lines (88 loc) · 1.97 KB
/
Copy pathpyproject.toml
File metadata and controls
93 lines (88 loc) · 1.97 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "voidaccess"
version = "1.5.0"
description = "Dark web OSINT CLI — automated threat intelligence from query to report"
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [{ name = "VoidAccess" }]
keywords = ["osint", "darkweb", "threat-intelligence", "tor", "cli"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Information Technology",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Security",
]
dependencies = [
"typer>=0.12",
"rich>=13",
"textual>=0.60",
"aiohttp>=3.9",
"aiohttp-socks>=0.8",
"sqlalchemy>=2.0",
"aiosqlite>=0.20",
"langchain>=0.2",
"langchain-openai>=0.1",
"langchain-anthropic>=0.1",
"langchain-google-genai>=1.0",
"langchain-groq>=0.1",
"langchain-ollama>=0.1",
"python-dotenv>=1.0",
"httpx>=0.27",
"spacy>=3.7",
"beautifulsoup4>=4.12",
"feedparser>=6.0",
"python-dateutil>=2.9",
"trafilatura>=1.6",
"requests>=2.31",
"python-socks>=2.4",
"tldextract>=5.1",
]
[project.optional-dependencies]
dev = ["pytest", "pytest-asyncio"]
[project.scripts]
voidaccess = "voidaccess_cli.main:app"
[tool.setuptools]
py-modules = ["config"]
[tool.setuptools.packages.find]
where = ["."]
include = [
"voidaccess_cli*",
"db*",
"sources*",
"extractor*",
"scraper*",
"search*",
"utils*",
"export*",
"analysis*",
"fingerprint*",
"graph*",
"i18n*",
"vector*",
"monitor*",
"crawler*",
"auth*",
"voidaccess*",
"api*",
]
exclude = [
"tests*",
"web*",
"va_final_qa*",
"infra*",
"chroma_db*",
"cti_data*",
"data*",
"docs*",
"scripts*",
"public*",
"__pycache__*",
]