Version bump to 20171117.0

This commit is contained in:
Paulus Schoutsen 2017-11-16 22:02:53 -08:00
parent 6074de356c
commit d79ae551b2

View File

@ -1,12 +1,17 @@
from setuptools import setup, find_packages from setuptools import setup, find_packages
setup(name='home-assistant-frontend', setup(name='home-assistant-frontend',
version='20171115.0', version='20171117.0',
description='The Home Assistant frontend', description='The Home Assistant frontend',
url='https://github.com/home-assistant/home-assistant-polymer', url='https://github.com/home-assistant/home-assistant-polymer',
author='The Home Assistant Authors', author='The Home Assistant Authors',
author_email='hello@home-assistant.io', author_email='hello@home-assistant.io',
license='Apache License 2.0', license='Apache License 2.0',
packages=find_packages(include=['hass_frontend', 'hass_frontend_es5', 'hass_frontend.*', 'hass_frontend_es5.*']), packages=find_packages(include=[
'hass_frontend',
'hass_frontend_es5',
'hass_frontend.*',
'hass_frontend_es5.*'
]),
include_package_data=True, include_package_data=True,
zip_safe=False) zip_safe=False)