From cc3b15c91a7b0bee204b732f2fef317e1154c4aa Mon Sep 17 00:00:00 2001 From: bmccluskey Date: Wed, 14 Sep 2022 08:01:44 +0100 Subject: [PATCH] Add files via upload --- CONTRIBUTION.md | 5 +++++ LICENSE | 13 +++++++++++++ README.md | 4 ++++ hacs.json | 6 ++++++ setup.py | 41 +++++++++++++++++++++++++++++++++++++++++ 5 files changed, 69 insertions(+) create mode 100644 CONTRIBUTION.md create mode 100644 LICENSE create mode 100644 README.md create mode 100644 hacs.json create mode 100644 setup.py diff --git a/CONTRIBUTION.md b/CONTRIBUTION.md new file mode 100644 index 0000000..d7e3405 --- /dev/null +++ b/CONTRIBUTION.md @@ -0,0 +1,5 @@ +# Contributions + +Contributions are welcome. If you use HA and a Eufy Vacuum and want to make improvmenets, get in touch. + + diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..4571d73 --- /dev/null +++ b/LICENSE @@ -0,0 +1,13 @@ +Copyright 2022 Brendan McCluskey + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + https://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. diff --git a/README.md b/README.md new file mode 100644 index 0000000..af75b3d --- /dev/null +++ b/README.md @@ -0,0 +1,4 @@ +[![hacs_badge](https://img.shields.io/badge/HACS-Custom-orange.svg?style=for-the-badge)](https://github.com/custom-components/hacs) +Buy Me A Coffee +# Eufy Robovac control for Home Assistant + diff --git a/hacs.json b/hacs.json new file mode 100644 index 0000000..44ce374 --- /dev/null +++ b/hacs.json @@ -0,0 +1,6 @@ +{ + "name": "Eufy Robovacs", + "domains": "robovacs", + "iot_class": "Local Polling", + "render_readme": true +} diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..11f1d99 --- /dev/null +++ b/setup.py @@ -0,0 +1,41 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +# Copyright 2022 Brendan McCluskey +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + + +import re +from setuptools import setup, find_packages +import sys +import warnings + +dynamic_requires = [] + +setup( + name='robovac', + version="1.0", + author='Brendan McCluskey', + url='http://github.com/bmccluskey/robovac', + packages=find_packages(), + scripts=[], + description='Python API for controlling Eufy Robovac vacuum cleaners', + classifiers=[ + 'Development Status :: 4 - Beta', + 'Intended Audience :: Developers', + 'License :: OSI Approved :: Apache Software License', + 'Operating System :: OS Independent', + 'Programming Language :: Python', + ], +)