1 |
#!/usr/bin/env python |
2 |
|
3 |
from distutils.core import setup |
4 |
import py2exe |
5 |
|
6 |
setup( |
7 |
name="NetFraggle", |
8 |
version="0.0.1", |
9 |
description="NetFraggle Collaboration Tool", |
10 |
author="netfrag.org", |
11 |
url="http://netfrag.org/twiki/bin/view/Main/NetFraggle", |
12 |
#packages=['distutils', 'distutils.command'], |
13 |
#packages=['encodings'], |
14 |
#ext_modules = [ 'code |
15 |
package_dir = {'': '../libs'}, |
16 |
windows=["fraggleMain.py"], |
17 |
#py_modules = ['encodings','xml','sax'], |
18 |
data_files=[ |
19 |
('res', ['res/about.html.dat', 'res/netfrag179x104.gif']), |
20 |
('.', ['mixxx.ico']), |
21 |
] |
22 |
) |
23 |
|