jleechanorg-pr-automation 0.1.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.

Potentially problematic release.


This version of jleechanorg-pr-automation might be problematic. Click here for more details.

@@ -0,0 +1,32 @@
1
+ """
2
+ jleechanorg-pr-automation: GitHub PR automation system with safety limits and actionable counting.
3
+
4
+ This package provides comprehensive PR monitoring and automation capabilities with built-in
5
+ safety features, intelligent filtering, and cross-process synchronization.
6
+ """
7
+
8
+ from .jleechanorg_pr_monitor import JleechanorgPRMonitor
9
+ from .automation_safety_manager import AutomationSafetyManager
10
+ from .utils import (
11
+ SafeJSONManager,
12
+ setup_logging,
13
+ get_email_config,
14
+ validate_email_config,
15
+ get_automation_limits,
16
+ json_manager,
17
+ )
18
+
19
+ __version__ = "0.1.0"
20
+ __author__ = "jleechan"
21
+ __email__ = "jlee@jleechan.org"
22
+
23
+ __all__ = [
24
+ "JleechanorgPRMonitor",
25
+ "AutomationSafetyManager",
26
+ "SafeJSONManager",
27
+ "setup_logging",
28
+ "get_email_config",
29
+ "validate_email_config",
30
+ "get_automation_limits",
31
+ "json_manager",
32
+ ]