1
0
Fork 0

Make really theming optional

This commit is contained in:
Daniele Tricoli 2023-02-23 20:48:04 +01:00
parent 29c5a3008a
commit 2d79f2d856
2 changed files with 5 additions and 7 deletions

8
poetry.lock generated
View File

@ -208,7 +208,7 @@ files = [
name = "pillow"
version = "9.4.0"
description = "Python Imaging Library (Fork)"
category = "dev"
category = "main"
optional = true
python-versions = ">=3.7"
files = [
@ -431,7 +431,7 @@ files = [
name = "ttkthemes"
version = "3.2.2"
description = "A group of themes for the ttk extensions of Tkinter with a Tkinter.Tk wrapper"
category = "dev"
category = "main"
optional = true
python-versions = ">=3.5"
files = [
@ -454,9 +454,9 @@ files = [
]
[extras]
themes = []
themes = ["ttkthemes"]
[metadata]
lock-version = "2.0"
python-versions = "^3.8"
content-hash = "c7359c8eeea68b593da9a3433c6316e61f0b2e106e81b3763abaf8e68d13d954"
content-hash = "747b74a3556c3345ad176bc6139732609c6f7cd3471901200a8eafd129f6b308"

View File

@ -21,6 +21,7 @@ ble-serial = "^2.7.0"
prompt-toolkit = "^3.0.36"
asyncclick = "^8.1.3.4"
anyio = "^3.6.2"
ttkthemes = {version = "^3.2.2", optional = true}
[tool.poetry.scripts]
freakble = "freakble.__main__:run"
@ -28,9 +29,6 @@ freakble = "freakble.__main__:run"
[tool.poetry.extras]
themes = ["ttkthemes"]
[tool.poetry.group.extras.dependencies]
ttkthemes = {version = "0.5.1", optional = true}
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"