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
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
import re
|
import re
|
||||||
from setuptools import setup, get_packages
|
from setuptools import setup, find_packages
|
||||||
|
|
||||||
|
|
||||||
def get_version(filename):
|
def get_version(filename):
|
||||||
|
@ -18,7 +18,7 @@ setup(
|
||||||
author_email='fgnodtke@cronosx.de',
|
author_email='fgnodtke@cronosx.de',
|
||||||
description='Improved Subsonic extension for Mopidy',
|
description='Improved Subsonic extension for Mopidy',
|
||||||
long_description=open('README.md').read(),
|
long_description=open('README.md').read(),
|
||||||
packages=get_packages(exclude=['tests', 'tests.*']),
|
packages=find_packages(exclude=['tests', 'tests.*']),
|
||||||
zip_safe=False,
|
zip_safe=False,
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
install_requires=[
|
install_requires=[
|
||||||
|
|
Loading…
Add table
Reference in a new issue