-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathinstaller.cfg
50 lines (41 loc) · 1.54 KB
/
installer.cfg
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# https://github.com/takluyver/pynsist
# To make use of this file, you will need to follow the steps at
# https://pynsist.readthedocs.io/en/latest/index.html, including installing NSIS on your computer.
[Application]
name=RLBotGUI
version=1.0
# How to launch the app - this calls the 'main' function from the 'myapp' package:
target=$WINDIR\system32\cmd.exe
parameters=/c start "RLBotGUI" "$INSTDIR\install-and-run.bat"
icon=pynsist_helpers\rlbot.ico
# It's nice to show the console because bot output / diagnostic info / quit instructions show up there.
console=true
[Python]
version=3.7.1
[Include]
# I came up with these lists by uninstalling all my pip stuff then running pip freeze.
# See https://stackoverflow.com/a/40566052 for details.
# I tried putting everything into pypi_wheels first, then moved the ones that didn't work
# down to packages.
# Packages from PyPI that the application requires, one per line. These must have wheels on PyPI
pypi_wheels = pip==18.1
bottle==0.12.16
cffi==1.11.5
gevent==1.4.0
gevent-websocket==0.10.1
greenlet==0.4.15
setuptools==40.6.2
whichcraft==0.5.2
# Packages which don't publish wheels. If you installed the requirements.txt, you'll have these locally and it'll work.
packages = eel
future
bottle_websocket
pycparser
# Other files and folders that should be installed
files = run.py
pynsist_helpers/upgrade.py
pynsist_helpers/install-and-run.bat
pynsist_helpers/requirements.txt
pynsist_helpers/rlbot-requirements.txt
[Build]
nsi_template = template.nsi