mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-08-14 02:26:58 -07:00
Add rumps 0.3.0
This commit is contained in:
parent
1bca410bcb
commit
0571a091f7
7 changed files with 1671 additions and 0 deletions
26
lib/rumps/__init__.py
Normal file
26
lib/rumps/__init__.py
Normal file
|
@ -0,0 +1,26 @@
|
|||
#!/usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# rumps: Ridiculously Uncomplicated macOS Python Statusbar apps.
|
||||
# Copyright: (c) 2017, 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.3.0'
|
||||
__author__ = 'Jared Suttles'
|
||||
__license__ = 'Modified BSD'
|
||||
__copyright__ = 'Copyright 2017 Jared Suttles'
|
||||
|
||||
from .rumps import (separator, debug_mode, alert, notification, application_support, timers, quit_application, timer,
|
||||
clicked, notifications, MenuItem, SliderMenuItem, Timer, Window, App, slider)
|
Loading…
Add table
Add a link
Reference in a new issue