Python3 Migrate
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
import os
|
||||
|
||||
import mopidy
|
||||
from mopidy import config, ext
|
||||
|
||||
|
||||
class Extension(ext.Extension):
|
||||
|
||||
dist_name = "Mopidy-SoftwareMixer"
|
||||
ext_name = "softwaremixer"
|
||||
version = mopidy.__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().get_config_schema()
|
||||
return schema
|
||||
|
||||
def setup(self, registry):
|
||||
from .mixer import SoftwareMixer
|
||||
|
||||
registry.add("mixer", SoftwareMixer)
|
||||
Reference in New Issue
Block a user