forked from compmem/smile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
23 lines (21 loc) · 874 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
#emacs: -*- mode: python; py-indent-offset: 4; indent-tabs-mode: nil -*-
#ex: set sts=4 ts=4 sw=4 et:
### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ##
#
# See the COPYING file distributed along with the smile package for the
# copyright and license terms.
#
### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ##
from distutils.core import setup
setup(name='smile',
version='0.1.0',
packages=['smile'],
package_dir={"smile": "smile"},
package_data={"smile": ["face-smile.png",
"test_sound.wav",
"test_video.mp4",
"crosshairs*"]},
author=['Per B. Sederberg'],
maintainer=['Per B. Sederberg'],
maintainer_email=['[email protected]'],
url=['http://github.com/compmem/smile'])