diff --git a/mopidy_touchscreen/__init__.py~ b/mopidy_touchscreen/__init__.py~ deleted file mode 100644 index 6107d48..0000000 --- a/mopidy_touchscreen/__init__.py~ +++ /dev/null @@ -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) - diff --git a/mopidy_touchscreen/dynamic_background.py~ b/mopidy_touchscreen/dynamic_background.py~ deleted file mode 100644 index eac73da..0000000 --- a/mopidy_touchscreen/dynamic_background.py~ +++ /dev/null @@ -1,25 +0,0 @@ -import random - -class DynamicBackground(): - - def __init__(self): - self.current=[0,0,0] - self.target=[0,0,0] - for x in range(0, 3): - self.target[x]=random.randint(0,255) - - def drawBackground(self,surface): - same = True - for x in range(0, 3): - if self.current[x]> self.target[x]: - self.current[x]=self.current[x]-1 - elif self.current[x]= 0.17', - 'Pykka >= 1.1', - ], - test_suite='nose.collector', - tests_require=[ - 'nose', - 'mock >= 1.0', - ], - entry_points={ - 'mopidy.ext': [ - 'touchscreen = mopidy_touchscreen:Extension', - ], - }, - classifiers=[ - 'Environment :: No Input/Output (Daemon)', - 'Intended Audience :: End Users/Desktop', - 'License :: OSI Approved :: Apache Software License', - 'Operating System :: OS Independent', - 'Programming Language :: Python :: 2', - 'Topic :: Multimedia :: Sound/Audio :: Players', - ], -)