-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (27 loc) · 814 Bytes
/
setup.py
File metadata and controls
33 lines (27 loc) · 814 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
32
33
"""
This is a setup.py script generated by py2applet
Usage:
python setup.py py2app
python3 setup.py py2app --iconfile <filename>
"""
from setuptools import setup
APP = ['SpotifyTimer.py']
VERSION = '0.1.1'
DATA_FILES = ['logo.png']
OPTIONS = {"iconfile" : "SpotifyTimer_icon.icns", # path to the icon for the Application
"plist" : {"NSHumanReadableCopyright" : "© 2023 Jules Pyke"} # copyright seen in MacOS 'Get Info' menu
}
AUTHOR = 'Jules Pyke'
EMAIL = 'info@golively.tv'
DESCRIPTION = 'Countdown timer to pause Spotify'
setup(
app=APP,
version=VERSION,
author=AUTHOR,
author_email=EMAIL,
description=DESCRIPTION,
long_description=open('README.md').read(),
data_files=DATA_FILES,
options={'py2app': OPTIONS},
setup_requires=['py2app'],
)