Skip to content

Commit

Permalink
Update version to 20181023.0
Browse files Browse the repository at this point in the history
  • Loading branch information
balloob committed Oct 23, 2018
1 parent 29f0320 commit 19c365c
Showing 1 changed file with 20 additions and 18 deletions.
38 changes: 20 additions & 18 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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,
)

0 comments on commit 19c365c

Please sign in to comment.