diff --git a/.gitignore b/.gitignore index 228670b1..7a45a8d4 100755 --- a/.gitignore +++ b/.gitignore @@ -2,6 +2,7 @@ /mopidy_iris/static/ /Mopidy_Iris.egg-info/ public_html +/dist/ /.sass-cache/ *.orig Thumbs.db diff --git a/MANIFEST.in b/MANIFEST.in index a35f5ab4..30415830 100755 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,2 +1,2 @@ -include mopidy_spotmop/ext.conf -recursive-include mopidy_spotmop/static * \ No newline at end of file +include mopidy_iris/ext.conf +recursive-include mopidy_iris/static * \ No newline at end of file diff --git a/mopidy_iris/__init__.py b/mopidy_iris/__init__.py index 521ae464..e8e2284f 100755 --- a/mopidy_iris/__init__.py +++ b/mopidy_iris/__init__.py @@ -8,7 +8,7 @@ from frontend import IrisFrontend from http import RequestHandler logger = logging.getLogger(__name__) -__version__ = '2.10.1' +__version__ = '2.10.11' ## # Core extension class diff --git a/setup.py b/setup.py index 4a29b8ea..446656a7 100755 --- a/setup.py +++ b/setup.py @@ -11,11 +11,11 @@ def get_version(filename): setup( name='Mopidy-Iris', version=get_version('mopidy_iris/__init__.py'), - url='https://github.com/jaedb/spotmop', + url='https://github.com/jaedb/iris', license='Apache License, Version 2.0', author='James Barnsley', author_email='james@barnsley.nz', - description='A fully-functional Mopidy Web-Client encompassing Spotify and many other backends', + description='A fully-functional Mopidy web client encompassing Spotify and many other backends', packages=find_packages(), zip_safe=False, include_package_data=True,