Add setup.py to allow installing with pip

This commit is contained in:
Maurizio Porrato 2019-02-18 07:36:17 +00:00
parent cf0836da3b
commit 55c749cb1c
2 changed files with 8 additions and 0 deletions

View File

8
setup.py Normal file
View File

@ -0,0 +1,8 @@
from setuptools import setup
setup(
name='eupy',
version='0.1',
description='Eufy RoboVac 11s remote',
scripts=['eupy']
)