From 4ef443da0ff8a7dff698320c714be695cf43667d Mon Sep 17 00:00:00 2001 From: GadgetReactor Date: Sat, 9 Jul 2016 19:32:16 +0800 Subject: [PATCH] Create setup.py --- setup.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 00000000..8c4c7bb3 --- /dev/null +++ b/setup.py @@ -0,0 +1,12 @@ +from setuptools import setup + +setup(name='pyW215', + version='0.1.1', + description='Interface for TPLink HS100 Smart Plugs.', + url='https://github.com/GadgetReactor/pyHS100', + author='Sean Seah (GadgetReactor', + author_email='sean@gadgetreactor.com', + license='MIT', + packages=['pyHS100'], + install_requires=[], + zip_safe=False)