1
0
mirror of https://github.com/no2chem/wideq.git synced 2025-05-16 07:10:09 -07:00
wideq/setup.py
2018-01-20 23:13:25 -05:00

21 lines
500 B
Python

from setuptools import setup
setup(
name='wideq',
version='0.0.0',
description='LG SmartThinQ API client',
author='Adrian Sampson',
author_email='adrian@radbox.org',
url='https://github.com/sampsyo/wideq',
license='MIT',
platforms='ALL',
install_requires=['requests'],
py_modules=['wideq'],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
)