mirror of
https://github.com/no2chem/wideq.git
synced 2025-05-16 07:10:09 -07:00
21 lines
500 B
Python
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',
|
|
],
|
|
)
|