2016-09-15 17:06:26 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
|
2019-05-27 20:57:32 +02:00
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
2018-03-18 23:03:26 +01:00
|
|
|
|
2020-04-21 07:50:23 +02:00
|
|
|
version = '0.13.2'
|
2016-09-15 17:06:26 +02:00
|
|
|
|
|
|
|
setup(
|
|
|
|
name='broadlink',
|
2019-05-18 17:13:33 +02:00
|
|
|
version=version,
|
2016-09-15 17:06:26 +02:00
|
|
|
author='Matthew Garrett',
|
|
|
|
author_email='mjg59@srcf.ucam.org',
|
|
|
|
url='http://github.com/mjg59/python-broadlink',
|
|
|
|
packages=find_packages(),
|
|
|
|
scripts=[],
|
2020-04-10 09:23:15 +02:00
|
|
|
install_requires=['cryptography>=2.1.1'],
|
2016-09-15 17:06:26 +02:00
|
|
|
description='Python API for controlling Broadlink IR controllers',
|
|
|
|
classifiers=[
|
|
|
|
'Development Status :: 4 - Beta',
|
|
|
|
'Intended Audience :: Developers',
|
|
|
|
'License :: OSI Approved :: MIT License',
|
|
|
|
'Operating System :: OS Independent',
|
|
|
|
'Programming Language :: Python',
|
|
|
|
],
|
|
|
|
include_package_data=True,
|
|
|
|
zip_safe=False,
|
|
|
|
)
|