Spaces:
Sleeping
Sleeping
Rename project to phishing-detection and added project structure
Browse files
pyproject.toml
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
[project]
|
| 2 |
-
name = "
|
| 3 |
version = "0.1.0"
|
| 4 |
description = "Add your description here"
|
| 5 |
requires-python = ">=3.12"
|
|
|
|
| 1 |
[project]
|
| 2 |
+
name = "phising-detection"
|
| 3 |
version = "0.1.0"
|
| 4 |
description = "Add your description here"
|
| 5 |
requires-python = ">=3.12"
|
src/phising_detection/__init__.py
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""Phishing Detection ML Project."""
|
| 2 |
+
|
| 3 |
+
__version__ = "0.1.0"
|
src/phising_detection/data/__init__.py
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""Data preprocessing and feature store management."""
|
| 2 |
+
|
| 3 |
+
|
src/phising_detection/models/__init__.py
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
"""Model implementations for phishing detection."""
|
src/phising_detection/utils/__init__.py
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""Utility functions and helpers."""
|
| 2 |
+
|
| 3 |
+
|
tests/__init__.py
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
"""Test suite for phishing detection project."""
|