9and3r 11 лет назад
Родитель
Сommit
0aa1c88414
1 измененных файлов с 0 добавлено и 43 удалено
  1. 0 43
      mopidy_touchscreen/__init__.py~

+ 0 - 43
mopidy_touchscreen/__init__.py~

@@ -1,43 +0,0 @@
-from __future__ import unicode_literals
-
-import logging
-import os
-
-# TODO: Remove entirely if you don't register GStreamer elements below
-import pygst
-pygst.require('0.10')
-import gst
-import gobject
-
-from mopidy import config, ext
-
-
-__version__ = '0.1.0'
-
-# TODO: If you need to log, use loggers named after the current Python module
-logger = logging.getLogger(__name__)
-
-
-class Extension(ext.Extension):
-
-    dist_name = 'Mopidy-Touchscreen'
-    ext_name = 'touchscreen'
-    version = __version__
-
-    def get_default_config(self):
-        conf_file = os.path.join(os.path.dirname(__file__), 'ext.conf')
-        return config.read(conf_file)
-
-    def get_config_schema(self):
-        schema = super(Extension, self).get_config_schema()
-        # TODO: Comment in and edit, or remove entirely
-        #schema['username'] = config.String()
-        #schema['password'] = config.Secret()
-        return schema
-
-    def setup(self, registry):
-        # You will typically only implement one of the following things
-        # in a single extension.
-	from .touch_screen import Touch_Screen
-        registry.add('frontend', Touch_Screen)
-