-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (29 loc) · 826 Bytes
/
setup.py
File metadata and controls
31 lines (29 loc) · 826 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
from setuptools import setup
APP = ['src/ltotd.py']
VERSION = '1.1.0'
DATA_FILES = []
OPTIONS = {
'argv_emulation': False,
'iconfile': 'src/appicon.png',
'plist': {
'CFBundleIdentifier': 'com.jriggles.LTOTD',
'CFBundleShortVersionString': VERSION,
'LSUIElement': True, # menu bar app
'NSHumanReadableCopyright': (
'Copyright © 2024-25 John Riggles [sudo_whoami] - MIT License'
),
},
'packages': ['httpx', 'rumps',],
}
setup(
app=APP,
name='LTOTD',
version=VERSION,
description='Get the Lospec Tag of the Day and show it in the menu bar',
author='J. Riggles [sudo_whoami]',
url='https://github.com/JRiggles/LTOTD',
license='MIT',
data_files=DATA_FILES,
options={'py2app': OPTIONS},
setup_requires=['py2app'],
)