public
Description: The new version of aMSN client
Homepage: http://www.amsn-project.net/
Clone URL: git://github.com/drf/amsn2.git
amsn2 / setupCocoa.py
100644 19 lines (14 sloc) 0.469 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/env python
 
from distutils.core import setup
import py2app
from dircache import listdir
 
# A list of files to include in the bundle.
files = ['amsn2', 'papyon']
 
# Nibs need to be appened individually because they they need to be in the root of the bundle.
for f in listdir('amsn2/gui/front_ends/cocoa/nibs/files/'):
    files.append('amsn2/gui/front_ends/cocoa/nibs/files/' + f)
 
setup(
    name = 'aMSN2',
    app = ['amsn2.py'],
    data_files = files,
)