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
|
#!/usr/bin/env python
from distutils.core import setup
setup(
name='remotecontrol',
version='0.0.1',
url='https://github.com/otcshare/remotecontrol',
description='Remote control',
packages = ['remotecontrol'],
package_data = {
'remotecontrol': [
'api/*.py',
'api/mime.types',
'data/*',
'www/index.html',
'www/assets/*.jpg',
'www/assets/*.png',
'www/css/*.css',
'www/js/*.js',
],
},
scripts=[
'scripts/start-remoteserver',
]
)
|