File: py2exe.py

package info (click to toggle)
angrydd 1.0.1-12
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 6,504 kB
  • sloc: python: 3,483; makefile: 42; 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")]}
 ]

)