Added the styles to the package

This commit is contained in:
Sumner Evans
2019-06-30 20:52:39 -06:00
parent fd7be04d37
commit 595085ff1d

View File

@@ -9,7 +9,8 @@ with codecs.open(os.path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
# Find the version
with codecs.open(os.path.join(here, 'libremsonic/__init__.py'), encoding='utf-8') as f:
with codecs.open(os.path.join(here, 'libremsonic/__init__.py'),
encoding='utf-8') as f:
for line in f:
if line.startswith('__version__'):
version = eval(line.split()[-1])
@@ -42,6 +43,7 @@ setup(
],
keywords='airsonic subsonic libresonic music',
packages=find_packages(exclude=['tests']),
package_data={'libremsonic': ['ui/app_styles.css']},
install_requires=[
'python-dateutil',
'python-mpv',