2016-09-15 17:06:26 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
import re
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
import sys
|
|
|
|
import warnings
|
|
|
|
|
|
|
|
dynamic_requires = []
|
|
|
|
|
2016-12-04 02:02:07 +01:00
|
|
|
version = 0.2
|
2016-09-15 17:06:26 +02:00
|
|
|
|
|
|
|
setup(
|
|
|
|
name='broadlink',
|
2016-12-04 02:02:07 +01:00
|
|
|
version=0.2,
|
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=[],
|
|
|
|
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,
|
|
|
|
)
|