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
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',
],
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)
zip_safe=False,
)