mirror of
https://github.com/python-kasa/python-kasa.git
synced 2024-12-22 19:23:34 +00:00
13 lines
427 B
Python
13 lines
427 B
Python
|
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)
|