File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ from __future__ import print_function
12from setuptools import setup , find_packages
3+ import os
4+ import tion_btle .const
5+
6+
7+ here = os .path .abspath (os .path .dirname (__file__ ))
28
39setup (
4- name = 'tion' ,
5- version = '1.0' ,
6- packages = find_packages (),
10+ name = 'tion_btle' ,
11+ version = tion_btle .const .VERSION ,
712 long_description = "Module for working with Tion breezers" ,
13+ url = 'https://github.com/TionAPI/tion_python/tree/dev' ,
14+ install_requires = ['bluepy==1.3.0' ],
15+ description = 'Python module for interacting with Tion breezers' ,
16+ packages = find_packages (),
817)
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ VERSION = '0.1.3'
Original file line number Diff line number Diff line change 22from typing import Callable
33
44if __package__ == "" :
5- from tion import tion , TionException
5+ from tion_btle . tion import tion , TionException
66else :
7- from . import tion , TionException
7+ from .tion import tion , TionException
88
99from bluepy import btle
1010import time
You can’t perform that action at this time.
0 commit comments