Skip to content
Snippets Groups Projects
Commit 8209d74c authored by Anton Sarukhanov's avatar Anton Sarukhanov
Browse files

Initial commit

parents
No related branches found
No related tags found
No related merge requests found
# TurnTouch Python library
This library provides support for the [Turn Touch](https://shop.turntouch.com/)
bluetooth smart home remote.
It is written in Python 3, originally for use with [Home Assistant](https://www.home-assistant.io/).
# Status
This is currently pre-alpha status. It is not usable.
setup.py 0 → 100644
import os
from setuptools import setup, find_packages
def read(filename):
'''Read a file and return the contents.'''
return open(os.path.join(os.path.dirname(__file__), filename)).read()
setup(
name='TurnTouch',
version='0.1',
url='https://github.com/antsar/python-turntouch',
author='Anton Sarukhanov',
author_email='code@ant.sr',
description='Python library for the Turn Touch smart home remote',
license='MIT',
long_description=read('README.md'),
long_description_content_type='text/markdown',
packages=find_packages(),
install_requires=[
'bluepy==1.1.4',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Environment :: Console',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3.5',
'Topic :: Home Automation',
]
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment