Fixing ip finding error. Also putting mouse events back in.
[profile/ivi/remotecontrol.git] / setup.py
1 #!/usr/bin/env python
2 from distutils.core import setup
3
4 setup(
5     name='remotecontrol',
6     version='0.0.1',
7     url='https://github.com/otcshare/remotecontrol',
8     description='Remote control',
9     packages = ['remotecontrol'],
10     package_data = {
11         'remotecontrol': [
12              'api/*.py',
13              'api/mime.types',
14              'data/*',
15              'www/index.html',
16              'www/assets/*.jpg',
17              'www/assets/*.png',
18              'www/css/*.css',
19              'www/js/*.js',
20         ],
21     },
22     scripts=[
23         'scripts/start-remoteserver',
24     ]
25 )