1
0
Fork 0

Drop ble-serial dependency

This commit is contained in:
Daniele Tricoli 2023-02-27 00:51:14 +01:00
parent e62ee7620e
commit e3ac25a2e7
2 changed files with 2 additions and 80 deletions

79
poetry.lock generated
View File

@ -48,23 +48,6 @@ files = [
[package.dependencies]
colorama = {version = "*", markers = "platform_system == \"Windows\""}
[[package]]
name = "ble-serial"
version = "2.7.0"
description = "A package to connect BLE serial adapters"
category = "main"
optional = false
python-versions = ">=3.7"
files = [
{file = "ble-serial-2.7.0.tar.gz", hash = "sha256:8f16fbf07cef0ea36f6e79d6f035982e17ec9e8c3690de9ac06702eaf7cccb78"},
{file = "ble_serial-2.7.0-py3-none-manylinux1_x86_64.whl", hash = "sha256:cc106ac2e7afe3ca4a8adbb32d795bb6d13556de29dac24dc243ff7a2e6b1e6b"},
]
[package.dependencies]
bleak = ">=0.18.0"
coloredlogs = ">=15.0"
pyserial = {version = ">=3.4.0", markers = "platform_system == \"Windows\""}
[[package]]
name = "bleak"
version = "0.19.5"
@ -118,24 +101,6 @@ files = [
{file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"},
]
[[package]]
name = "coloredlogs"
version = "15.0.1"
description = "Colored terminal output for Python's logging module"
category = "main"
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
files = [
{file = "coloredlogs-15.0.1-py2.py3-none-any.whl", hash = "sha256:612ee75c546f53e92e70049c9dbfcc18c935a2b9a53b66085ce9ef6a6e5c0934"},
{file = "coloredlogs-15.0.1.tar.gz", hash = "sha256:7c991aa71a4577af2f82600d8f8f3a89f936baeaf9b50a9c197da014e5bf16b0"},
]
[package.dependencies]
humanfriendly = ">=9.1"
[package.extras]
cron = ["capturer (>=2.4)"]
[[package]]
name = "dbus-fast"
version = "1.84.2"
@ -177,21 +142,6 @@ files = [
[package.dependencies]
async-timeout = {version = ">=3.0.0", markers = "python_version < \"3.11\""}
[[package]]
name = "humanfriendly"
version = "10.0"
description = "Human friendly output for text interfaces using Python"
category = "main"
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
files = [
{file = "humanfriendly-10.0-py2.py3-none-any.whl", hash = "sha256:1697e1a8a8f550fd43c2865cd84542fc175a61dcb779b6fee18cf6b6ccba1477"},
{file = "humanfriendly-10.0.tar.gz", hash = "sha256:6b0b831ce8f15f7300721aa49829fc4e83921a9a301cc7f606be6686a2288ddc"},
]
[package.dependencies]
pyreadline3 = {version = "*", markers = "sys_platform == \"win32\" and python_version >= \"3.8\""}
[[package]]
name = "idna"
version = "3.4"
@ -388,33 +338,6 @@ files = [
[package.dependencies]
pyobjc-core = ">=8.5.1"
[[package]]
name = "pyreadline3"
version = "3.4.1"
description = "A python implementation of GNU readline."
category = "main"
optional = false
python-versions = "*"
files = [
{file = "pyreadline3-3.4.1-py3-none-any.whl", hash = "sha256:b0efb6516fd4fb07b45949053826a62fa4cb353db5be2bbb4a7aa1fdd1e345fb"},
{file = "pyreadline3-3.4.1.tar.gz", hash = "sha256:6f3d1f7b8a31ba32b73917cefc1f28cc660562f39aea8646d30bd6eff21f7bae"},
]
[[package]]
name = "pyserial"
version = "3.5"
description = "Python Serial Port Extension"
category = "main"
optional = false
python-versions = "*"
files = [
{file = "pyserial-3.5-py2.py3-none-any.whl", hash = "sha256:c4451db6ba391ca6ca299fb3ec7bae67a5c55dde170964c7a14ceefec02f2cf0"},
{file = "pyserial-3.5.tar.gz", hash = "sha256:3c77e014170dfffbd816e6ffc205e9842efb10be9f58ec16d3e8675b4925cddb"},
]
[package.extras]
cp2110 = ["hidapi"]
[[package]]
name = "sniffio"
version = "1.3.0"
@ -459,4 +382,4 @@ themes = ["ttkthemes"]
[metadata]
lock-version = "2.0"
python-versions = "^3.8"
content-hash = "560c3ea6c8a1796eddc1aa2c9b132e4a770e125a3ffdfb864a39fc5d8aac1211"
content-hash = "740fcf0afe3f0e7d4838b8806e1475fca746dbc2d918bdaea438085d78372987"

View File

@ -17,12 +17,11 @@ packages = [{include = "freakble", from = "src"}]
[tool.poetry.dependencies]
python = "^3.8"
ble-serial = "^2.7.0"
bleak = "^0.19.5"
prompt-toolkit = "^3.0.36"
asyncclick = "^8.1.3.4"
anyio = "^3.6.2"
ttkthemes = {version = "^3.2.2", optional = true}
bleak = "^0.19.5"
[tool.poetry.scripts]
freakble = "freakble.__main__:run"