-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (26 loc) · 907 Bytes
/
Copy pathsetup.py
File metadata and controls
30 lines (26 loc) · 907 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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Simple setup script for Phishing URL Detector.
For modern installation, use pyproject.toml instead.
"""
# This is a minimal setup.py for compatibility
# The main configuration is in pyproject.toml
import sys
import os
# Add current directory to Python path for imports
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
if __name__ == "__main__":
print("=" * 60)
print("Phishing URL Detector Setup")
print("=" * 60)
print("This application uses only Python standard libraries.")
print("No additional packages need to be installed.")
print("")
print("To run the applications:")
print(" Terminal version: python phishing_detector.py")
print(" GUI version: python phishing_detector_gui.py")
print("")
print("To run tests:")
print(" python test_phishing_detector.py")
print("=" * 60)