-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
42 lines (36 loc) · 1.05 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[tool.black]
line-length = 88
target-version = ["py38"]
[tool.isort]
profile = "black"
[tool.poetry]
name = "freakble"
version = "0.6.2"
description = "A simple tool to send messages into FreakWAN over Bluetooth low energy."
authors = ["Daniele Tricoli <eriol@mornie.org>"]
readme = "README.md"
license = "BSD-3-Clause"
repository = "https://github.com/eriol/freakble"
packages = [{include = "freakble", from = "src"}]
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",
]
[tool.poetry.dependencies]
python = "^3.8"
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}
[tool.poetry.scripts]
freakble = "freakble.__main__:run"
[tool.poetry.extras]
themes = ["ttkthemes"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"