Merge pull request #29 from aagallag/python3

Add support for python3
This commit is contained in:
Frederick Gnodtke 2020-02-01 11:18:36 +01:00 committed by GitHub
commit 35340c5c69
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View file

@ -1,5 +1,5 @@
from urlparse import urlparse
from urllib import urlencode
from urllib.parse import urlparse
from urllib.parse import urlencode
import libsonic
import logging
import itertools

View file

@ -24,11 +24,11 @@ setup(
install_requires=[
'setuptools',
'Mopidy >= 2.0',
'py-sonic == 0.6.2',
'py-sonic >= 0.7.7',
'Pykka >= 1.1'
],
entry_points={
b'mopidy.ext': [
'mopidy.ext': [
'subidy = mopidy_subidy:SubidyExtension',
],
},