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
|
|
|
|
2021-03-11 22:10:04 +01:00
|
|
|
version = '0.17.0'
|
2016-09-15 17:06:26 +02:00
|
|
|
|
|
|
|
setup(
|
2020-11-05 20:00:42 +01:00
|
|
|
name="broadlink",
|
2019-05-18 17:13:33 +02:00
|
|
|
version=version,
|
2020-11-05 20:00:42 +01:00
|
|
|
author="Matthew Garrett",
|
|
|
|
author_email="mjg59@srcf.ucam.org",
|
|
|
|
url="http://github.com/mjg59/python-broadlink",
|
2016-09-15 17:06:26 +02:00
|
|
|
packages=find_packages(),
|
|
|
|
scripts=[],
|
2021-03-11 22:07:56 +01:00
|
|
|
install_requires=["cryptography>=3.2"],
|
2021-03-11 22:10:04 +01:00
|
|
|
description="Python API for controlling Broadlink devices",
|
2016-09-15 17:06:26 +02:00
|
|
|
classifiers=[
|
2020-11-05 20:00:42 +01:00
|
|
|
"Development Status :: 4 - Beta",
|
|
|
|
"Intended Audience :: Developers",
|
|
|
|
"License :: OSI Approved :: MIT License",
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
"Programming Language :: Python",
|
2016-09-15 17:06:26 +02:00
|
|
|
],
|
|
|
|
include_package_data=True,
|
|
|
|
zip_safe=False,
|
|
|
|
)
|