File: py2exe.py

package info (click to toggle)
angrydd 1.0.1-5
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 6,312 kB
  • ctags: 510
  • sloc: python: 3,471; makefile: 48; sh: 1
file content (10 lines) | stat: -rw-r--r-- 162 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
# setup.py
from distutils.core import setup
import py2exe, glob
      
setup(windows=[{
   "script":"angrydd.py",
   "icon_resources": [(1, "angrydd.ico")]}
 ]

)