31 lines
696 B
Python
31 lines
696 B
Python
from __future__ import unicode_literals
|
|
|
|
import os
|
|
|
|
import mopidy
|
|
from mopidy import ext
|
|
from mopidy.utils import config
|
|
|
|
|
|
class Extension(ext.Extension):
|
|
|
|
dist_name = 'Mopidy-Stream'
|
|
ext_name = 'stream'
|
|
version = mopidy.__version__
|
|
|
|
def get_default_config(self):
|
|
conf_file = os.path.join(os.path.dirname(__file__), 'ext.conf')
|
|
return open(conf_file).read()
|
|
|
|
def get_config_schema(self):
|
|
schema = config.ExtensionConfigSchema()
|
|
schema['protocols'] = config.List()
|
|
return schema
|
|
|
|
def validate_environment(self):
|
|
pass
|
|
|
|
def get_backend_classes(self):
|
|
from .actor import StreamBackend
|
|
return [StreamBackend]
|