-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrequirements.txt
More file actions
57 lines (45 loc) · 1.05 KB
/
requirements.txt
File metadata and controls
57 lines (45 loc) · 1.05 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
# Ananta OSINT Platform - Dependencies
# Python 3.10+ required
# === Core Framework ===
fastapi>=0.104.0
uvicorn[standard]>=0.24.0
starlette>=0.27.0
pydantic>=2.0.0
# === Database ===
sqlalchemy>=2.0.0
alembic>=1.12.0
psycopg2-binary>=2.9.9 # PostgreSQL driver
# === Async Tasks ===
celery>=5.3.0
redis>=5.0.0
kombu>=5.3.0
# === HTTP & Networking ===
requests>=2.31.0
httpx>=0.25.0
aiohttp>=3.9.0
# === OSINT Tools ===
python-whois>=0.8.0
duckduckgo-search>=4.0.0
googlesearch-python>=1.2.0
# === AI / ML ===
sentence-transformers>=2.2.0
torch>=2.0.0 # Required by sentence-transformers
# === PDF Generation ===
reportlab>=4.0.0
# === Excel Export ===
openpyxl>=3.1.0
# === System Monitoring ===
psutil>=5.9.0
GPUtil>=1.4.0 # GPU monitoring (optional)
# === Security ===
python-dotenv>=1.0.0
python-multipart>=0.0.6 # For form data handling
# === Utilities ===
beautifulsoup4>=4.12.0
lxml>=4.9.0
# === Development ===
# pytest>=7.4.0
# pytest-asyncio>=0.21.0
# black>=23.0.0
# flake8>=6.0.0
# mypy>=1.0.0