File: setup-py2exe.py

package info (click to toggle)
cfv 1.18-2.2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 664 kB
  • ctags: 470
  • sloc: python: 3,284; makefile: 96
file content (14 lines) | stat: -rw-r--r-- 354 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# NOTE:  This setup.py is ONLY for building the win32 .exe of cfv
# For all other purposes, install using the Makefile

from distutils.core import setup
import py2exe

setup(name="cfv",
	console=["cfv.py"],
	options={"py2exe": {"packages": ["encodings"]}},
	version="1.18",
	author="Matthew Mueller",
	license="GPL",
	url="http://cfv.sourceforge.net",
)