aboutsummaryrefslogtreecommitdiffstats
path: root/meta-openstack/recipes-devtools/python/python-novnc/python-distutils.patch
blob: ef3393f31da26a84fbf02d90a75450cacb015bb6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Index: git/setup.py
===================================================================
--- /dev/null
+++ git/setup.py
@@ -0,0 +1,14 @@
+#!/usr/bin/env python
+
+from distutils.core import setup
+
+setup(name='python-novnc',
+      version='2012.1~e3',
+      description='NoVNC python libraries',
+      author='Ghe Rivero',
+      author_email='ghe.rivero@stackops.com',
+      url='http://www.stackops.com',
+      packages = ['novnc'],
+      package_dir = {'novnc':'utils'},
+      py_modules=['wsproxy','websocket','web','json2graph','img2js'],
+)