forked from LuckeyDuckey/GLaDOS-Terminal
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (26 loc) · 687 Bytes
/
setup.py
File metadata and controls
30 lines (26 loc) · 687 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
"""
This is a setup.py script generated by py2applet
Usage:
python setup.py py2app
"""
from setuptools import setup
APP = ['Main.py']
DATA_FILES = [
'Fonts',
'Images',
'Shaders',
'Sounds',
'Settings.json',
('Scripts/hifigan', ['Scripts/hifigan/config.json']),
]
OPTIONS = {
'iconfile': 'Images/Icon.png',
'packages': ['sounddevice', 'unidecode', 'inflect', 'scipy'],
'includes': ['pygame', 'moderngl', 'numpy', 'ollama', 'gdown', 'sounddevice', 'matplotlib', 'librosa', 'scipy', 'unidecode', 'inflect', 'torch', 'torchvision'],
}
setup(
app=APP,
data_files=DATA_FILES,
options={'py2app': OPTIONS},
setup_requires=['py2app'],
)