Initial commit
This commit is contained in:
commit
ecab016a73
4 changed files with 262 additions and 0 deletions
32
setup.py
Normal file
32
setup.py
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
#!/usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
import re
|
||||
from setuptools import setup, find_packages
|
||||
import sys
|
||||
import warnings
|
||||
|
||||
dynamic_requires = []
|
||||
|
||||
version = 0.1
|
||||
|
||||
setup(
|
||||
name='broadlink',
|
||||
version=0.1,
|
||||
author='Matthew Garrett',
|
||||
author_email='mjg59@srcf.ucam.org',
|
||||
url='http://github.com/mjg59/python-broadlink',
|
||||
packages=find_packages(),
|
||||
scripts=[],
|
||||
license=open('LICENSE').read(),
|
||||
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,
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue