hackboard-ussu321 1.0.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
hackboard/__init__.py ADDED
@@ -0,0 +1,26 @@
1
+ """
2
+ HackBoard — Professional Cybersecurity Intelligence Platform
3
+ =============================================================
4
+
5
+ A next-generation cybersecurity dashboard for ethical hacking,
6
+ OSINT intelligence, threat analysis, and defensive security operations.
7
+
8
+ Package: hackboard
9
+ Version: 1.0.0
10
+ Author: issu321
11
+ License: MIT
12
+ """
13
+
14
+ from pathlib import Path
15
+
16
+ __version__ = "1.0.0"
17
+ __author__ = "issu321"
18
+ __license__ = "MIT"
19
+ __title__ = "HackBoard"
20
+ __description__ = "Professional Cybersecurity Intelligence Platform"
21
+ __url__ = "https://github.com/issu321/hackboard"
22
+
23
+ # Ensure config directories exist on import
24
+ from hackboard.utils import ensure_config_dirs
25
+
26
+ ensure_config_dirs()
hackboard/__main__.py ADDED
@@ -0,0 +1,8 @@
1
+ """
2
+ HackBoard — Entry point for `python -m hackboard`
3
+ """
4
+
5
+ from hackboard.cli import main
6
+
7
+ if __name__ == "__main__":
8
+ main()