Fix setup.py
This commit is contained in:
parent
d8cbb503a5
commit
50716b982f
1 changed files with 2 additions and 2 deletions
4
setup.py
4
setup.py
|
@ -1,7 +1,7 @@
|
|||
from __future__ import unicode_literals
|
||||
|
||||
import re
|
||||
from setuptools import setup, get_packages
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
|
||||
def get_version(filename):
|
||||
|
@ -18,7 +18,7 @@ setup(
|
|||
author_email='fgnodtke@cronosx.de',
|
||||
description='Improved Subsonic extension for Mopidy',
|
||||
long_description=open('README.md').read(),
|
||||
packages=get_packages(exclude=['tests', 'tests.*']),
|
||||
packages=find_packages(exclude=['tests', 'tests.*']),
|
||||
zip_safe=False,
|
||||
include_package_data=True,
|
||||
install_requires=[
|
||||
|
|
Loading…
Add table
Reference in a new issue