forked from libmapper/webmapper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (22 loc) · 837 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
from distutils.core import setup
import sys
if 'py2exe' in sys.argv: import py2exe
if 'py2app' in sys.argv: import py2app
data_files = [('',['js']),
('',['includes']),
('',['css']),
('',['images']),
('',['html'])
]
options = {'argv_emulation': True, 'iconfile': 'images/libmapper.icns'}
setup(name='WebMapper',
version='0.2',
description='Graphical interface for the libmapper distributed mapping graph',
author='Stephen Sinclair, Joseph Malloch, Vijay Rudraraju, Aaron Krajeski, Jon Wilansky, Johnty Wang, Travis West, Mathias Bredholt',
author_email='[email protected]',
url='http://libmapper.org',
data_files = data_files,
options={'py2app': options},
windows=['webmapper.py'],
app=['webmapper.py'],
)