Skip to content
This repository has been archived by the owner on Jan 2, 2023. It is now read-only.

Commit

Permalink
alpha
Browse files Browse the repository at this point in the history
  • Loading branch information
duarteocarmo committed Mar 17, 2020
1 parent 5bed8a2 commit 8bdfe7d
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 1 deletion.
2 changes: 1 addition & 1 deletion corona_pt.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

class CoronaApp(object):
def __init__(self):
self.app = rumps.App("Corona", "🦠")
self.app = rumps.App("Corona PT", "🦠")
self.data = self.get_data(sender=None)

self.suspected = rumps.MenuItem(
Expand Down
Binary file added icon.icns
Binary file not shown.
22 changes: 22 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
from setuptools import setup

APP = ['corona_pt.py']
DATA_FILES = []
OPTIONS = {
'argv_emulation': True,
'iconfile': 'icon.icns',
'plist': {
'CFBundleShortVersionString': '0.2.0',
'LSUIElement': True,
},
'packages': ['rumps', 'requests'],
}

setup(
app=APP,
name='Corona PT',
data_files=DATA_FILES,
options={'py2app': OPTIONS},
setup_requires=['py2app'], install_requires=['rumps', 'requests']
)

0 comments on commit 8bdfe7d

Please sign in to comment.