1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
--- a/mopidy_soundcloud/__init__.py
+++ b/mopidy_soundcloud/__init__.py
@@ -1,11 +1,10 @@
import pathlib
-import pkg_resources
from mopidy import config, ext
from mopidy.exceptions import ExtensionError
-__version__ = pkg_resources.get_distribution("Mopidy-SoundCloud").version
+__version__ = '3.0.2'
class Extension(ext.Extension):
--- a/setup.cfg
+++ b/setup.cfg
@@ -27,7 +27,6 @@
install_requires =
Mopidy >= 3.0.0
Pykka >= 2.0.1
- setuptools
requests >= 2.0.0
beautifulsoup4 >= 4.7.1
|