1
0
Fork 0
freakble/pyproject.toml

43 lines
1.0 KiB
TOML
Raw Permalink Normal View History

[tool.black]
line-length = 88
target-version = ["py38"]
[tool.isort]
profile = "black"
2023-02-09 23:56:22 +01:00
[tool.poetry]
name = "freakble"
2023-03-08 16:20:59 +01:00
version = "0.6.2"
description = "A simple tool to send messages into FreakWAN over Bluetooth low energy."
2023-02-09 23:56:22 +01:00
authors = ["Daniele Tricoli <eriol@mornie.org>"]
readme = "README.md"
2023-02-13 02:00:33 +01:00
license = "BSD-3-Clause"
2023-02-23 18:03:58 +01:00
repository = "https://github.com/eriol/freakble"
2023-02-09 23:56:22 +01:00
packages = [{include = "freakble", from = "src"}]
2023-03-08 16:16:09 +01:00
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: BSD License",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Topic :: Communications",
]
2023-02-09 23:56:22 +01:00
[tool.poetry.dependencies]
2023-02-15 09:11:12 +01:00
python = "^3.8"
2023-02-27 00:51:14 +01:00
bleak = "^0.19.5"
prompt-toolkit = "^3.0.36"
asyncclick = "^8.1.3.4"
anyio = "^3.6.2"
2023-02-23 20:48:04 +01:00
ttkthemes = {version = "^3.2.2", optional = true}
2023-02-09 23:56:22 +01:00
[tool.poetry.scripts]
freakble = "freakble.__main__:run"
2023-02-09 23:56:22 +01:00
2023-02-23 20:13:54 +01:00
[tool.poetry.extras]
themes = ["ttkthemes"]
2023-02-09 23:56:22 +01:00
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"