mirror of
https://github.com/home-assistant/frontend.git
synced 2025-04-19 19:07:23 +00:00
13 lines
478 B
Python
13 lines
478 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(name='home-assistant-frontend',
|
|
version='20171102.0',
|
|
description='The Home Assistant frontend',
|
|
url='https://github.com/home-assistant/home-assistant-polymer',
|
|
author='Paulus Schoutsen',
|
|
author_email='Paulus@PaulusSchoutsen.nl',
|
|
license='Apache License 2.0',
|
|
packages=find_packages(include=['hass_frontend', 'hass_frontend.*']),
|
|
include_package_data=True,
|
|
zip_safe=False)
|