Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
TurnTouch Python Library
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Anton Sarukhanov
TurnTouch Python Library
Commits
8209d74c
Commit
8209d74c
authored
6 years ago
by
Anton Sarukhanov
Browse files
Options
Downloads
Patches
Plain Diff
Initial commit
parents
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
README.md
+10
-0
10 additions, 0 deletions
README.md
setup.py
+33
-0
33 additions, 0 deletions
setup.py
with
43 additions
and
0 deletions
README.md
0 → 100644
+
10
−
0
View file @
8209d74c
# 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.
This diff is collapsed.
Click to expand it.
setup.py
0 → 100644
+
33
−
0
View file @
8209d74c
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
'
,
]
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment