mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-01-06 11:09:57 -08:00
79cf61c53e
* Bump rumps from 0.3.0 to 0.4.0 Bumps [rumps](https://github.com/jaredks/rumps) from 0.3.0 to 0.4.0. - [Release notes](https://github.com/jaredks/rumps/releases) - [Changelog](https://github.com/jaredks/rumps/blob/master/CHANGES.rst) - [Commits](https://github.com/jaredks/rumps/commits) --- updated-dependencies: - dependency-name: rumps dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Update rumps==0.4.0 Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: JonnyWong16 <9099342+JonnyWong16@users.noreply.github.com> [skip ci]
31 lines
979 B
Python
31 lines
979 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
#
|
|
# rumps: Ridiculously Uncomplicated macOS Python Statusbar apps.
|
|
# Copyright: (c) 2020, Jared Suttles. All rights reserved.
|
|
# License: BSD, see LICENSE for details.
|
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
"""
|
|
rumps
|
|
=====
|
|
|
|
Ridiculously Uncomplicated macOS Python Statusbar apps.
|
|
|
|
rumps exposes Objective-C classes as Python classes and functions which greatly simplifies the process of creating a
|
|
statusbar application.
|
|
"""
|
|
|
|
__title__ = 'rumps'
|
|
__version__ = '0.4.0'
|
|
__author__ = 'Jared Suttles'
|
|
__license__ = 'Modified BSD'
|
|
__copyright__ = 'Copyright 2020 Jared Suttles'
|
|
|
|
from . import notifications as _notifications
|
|
from .rumps import (separator, debug_mode, alert, application_support, timers, quit_application, timer,
|
|
clicked, MenuItem, SliderMenuItem, Timer, Window, App, slider)
|
|
|
|
notifications = _notifications.on_notification
|
|
notification = _notifications.notify
|