Update version to 20181023.0

This commit is contained in:
Paulus Schoutsen 2018-10-23 14:01:51 +02:00
parent 29f032087e
commit 19c365cd12

View File

@ -1,20 +1,22 @@
from setuptools import setup, find_packages from setuptools import setup, find_packages
setup(name='home-assistant-frontend', setup(
version='20181021.0', name="home-assistant-frontend",
description='The Home Assistant frontend', version="20181023.0",
url='https://github.com/home-assistant/home-assistant-polymer', description="The Home Assistant frontend",
author='The Home Assistant Authors', url="https://github.com/home-assistant/home-assistant-polymer",
author_email='hello@home-assistant.io', author="The Home Assistant Authors",
license='Apache License 2.0', author_email="hello@home-assistant.io",
packages=find_packages(include=[ license="Apache License 2.0",
'hass_frontend', packages=find_packages(
'hass_frontend_es5', include=[
'hass_frontend.*', "hass_frontend",
'hass_frontend_es5.*' "hass_frontend_es5",
]), "hass_frontend.*",
install_requires=[ "hass_frontend_es5.*",
'user-agents==1.1.0', ]
], ),
include_package_data=True, install_requires=["user-agents==1.1.0"],
zip_safe=False) include_package_data=True,
zip_safe=False,
)