Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
205 changes: 0 additions & 205 deletions src/scitex/notification/README.md

This file was deleted.

37 changes: 10 additions & 27 deletions src/scitex/notification/__init__.py
Original file line number Diff line number Diff line change
@@ -1,30 +1,13 @@
#!/usr/bin/env python3
"""SciTeX Notification — thin wrapper delegating to scitex-notification package.
"""SciTeX notification — thin compatibility shim for scitex-notification."""

All notification logic lives in the standalone scitex-notification package.
This module re-exports the public API.
"""
import sys as _sys

from scitex_notification import (
DEFAULT_FALLBACK_ORDER,
alert,
alert_async,
available_backends,
call,
call_async,
sms,
sms_async,
)
try:
import scitex_notification as _real
except ImportError as _e:
raise ImportError(
"scitex.notification requires the 'scitex-notification' package. "
"Install with: pip install scitex[notification] (or: pip install scitex-notification)"
) from _e

__all__ = [
"alert",
"alert_async",
"call",
"call_async",
"sms",
"sms_async",
"available_backends",
"DEFAULT_FALLBACK_ORDER",
]

# EOF
_sys.modules[__name__] = _real
37 changes: 0 additions & 37 deletions src/scitex/notification/_backends.py

This file was deleted.

69 changes: 0 additions & 69 deletions src/scitex/notification/_backends/__init__.py

This file was deleted.

Loading
Loading