From 19c365cd125adcccd4d78093ce069701c07629f9 Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Tue, 23 Oct 2018 14:01:51 +0200 Subject: [PATCH] Update version to 20181023.0 --- setup.py | 38 ++++++++++++++++++++------------------ 1 file changed, 20 insertions(+), 18 deletions(-) diff --git a/setup.py b/setup.py index 0b146575a4..4d2f6d6f73 100644 --- a/setup.py +++ b/setup.py @@ -1,20 +1,22 @@ from setuptools import setup, find_packages -setup(name='home-assistant-frontend', - version='20181021.0', - description='The Home Assistant frontend', - url='https://github.com/home-assistant/home-assistant-polymer', - author='The Home Assistant Authors', - author_email='hello@home-assistant.io', - license='Apache License 2.0', - packages=find_packages(include=[ - 'hass_frontend', - 'hass_frontend_es5', - 'hass_frontend.*', - 'hass_frontend_es5.*' - ]), - install_requires=[ - 'user-agents==1.1.0', - ], - include_package_data=True, - zip_safe=False) +setup( + name="home-assistant-frontend", + version="20181023.0", + description="The Home Assistant frontend", + url="https://github.com/home-assistant/home-assistant-polymer", + author="The Home Assistant Authors", + author_email="hello@home-assistant.io", + license="Apache License 2.0", + packages=find_packages( + include=[ + "hass_frontend", + "hass_frontend_es5", + "hass_frontend.*", + "hass_frontend_es5.*", + ] + ), + install_requires=["user-agents==1.1.0"], + include_package_data=True, + zip_safe=False, +)