forked from Str8cucked/SmolPlayer
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
30 lines (26 loc) · 853 Bytes
/
setup.py
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
"""
This is a setup.py script generated by py2applet
Usage:
python3 setup.py py2app
"""
from setuptools import setup
APP = ['SmolPlayer.py']
DATA_FILES = ['assets', 'songlist.txt', 'urllist.txt']
OPTIONS = {
'iconfile':'app.icns',
'plist': {
'CFBundleName': "SmolPlayer",
'CFBundleDisplayName': "SmolPlayer",
'CFBundleGetInfoString': "Youtube Audio Player",
'CFBundleIdentifier': "com.42.osx.smolplayer",
'CFBundleVersion': "0.1.42",
'CFBundleShortVersionString': "1.0.42",
'NSHumanReadableCopyright': u"Copyright © 2020, Noah Broyles, All Rights Reserved"
}
}
setup(
app=APP,
data_files=DATA_FILES,
options={'py2app': OPTIONS},
setup_requires=['py2app'], install_requires=['requests', 'beautifulsoup4', 'python-vlc', 'pafy']
)