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
|
Description: Fixes disutils (adds a setup.py, etc.).
Author: Thomas Goirand <zigo@debian.org>
Forwarded: no
Last-Update: 2018.05-15
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,14 @@
+#!/usr/bin/env python
+
+from distutils.core import setup
+
+setup(name='python-novnc',
+ version='1.0.0',
+ 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=['json2graph','img2js'],
+)
--- /dev/null
+++ b/utils/__init__.py
@@ -0,0 +1 @@
+# vim: tabstop=4 shiftwidth=4 softtabstop=4
|