This repository has been archived on 2025-08-18. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
Bungloo/Windows/setup.py
2013-04-02 22:10:02 +02:00

30 lines
798 B
Python

#!/usr/bin/env python2
import os
from distutils.core import setup
import py2exe
files = []
for dirname, dirnames, filenames in os.walk('WebKit'):
for filename in filenames:
print dirname, filename
files += [(dirname, os.path.join(dirname, filename))]
for dirname, dirnames, filenames in os.walk('images'):
for filename in filenames:
files += [(dirname, os.path.join(dirname, filename))]
setup(
name = "Bungloo",
version = "1.3.0",
author = "Jeena Paradies",
author_email = "spam@jeenaparadies.net",
url = "http://jabs.nu/bungloo",
license = "BSD license",
#data_files = files,
windows = ["Bungloo.py"],
options = {
"py2exe": {"includes": ["sip", "PyQt4.QtCore", "PyQt4.QtGui", "PyQt4.QtNetwork"]}
}
)