1
0
mirror of https://github.com/mjg59/python-broadlink.git synced 2024-09-21 04:20:36 +02:00
python-broadlink/setup.py
Kendell R dfd3372c36 Add GH Actions (#470)
Add GitHub actions and run black.
2021-01-29 18:17:45 -03:00

30 lines
750 B
Python

#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
version = '0.16.0'
setup(
name="broadlink",
version=version,
author="Matthew Garrett",
author_email="mjg59@srcf.ucam.org",
url="http://github.com/mjg59/python-broadlink",
packages=find_packages(),
scripts=[],
install_requires=["cryptography>=2.1.1"],
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,
)