Add rumps 0.3.0

This commit is contained in:
JonnyWong16 2020-04-25 17:53:25 -07:00
commit 0571a091f7
No known key found for this signature in database
GPG key ID: B1F1F9807184697A
7 changed files with 1671 additions and 0 deletions

26
lib/rumps/__init__.py Normal file
View 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)