Windows Service with Python 3.5 and pyinstaller
- Python 3.5.x
 - Visual C++ Build Tools 2015
 - PyInstaller 3.2
 
Windows Service with Python 3.5 and pyinstaller
| import sys | |
| import pygame as pg | |
| BACKGROUND = pg.Color("darkslategray") | |
| SCREEN_SIZE = (500, 500) | |
| FPS = 60 | |
| class App(object): |