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-03-30 21:41:23 +01:00

26 lines
696 B
Python

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