forked from hire-marat/msband-py
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
49 lines (39 loc) · 1.2 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
43
44
45
46
47
48
49
[tool.poetry]
name = "msband"
version = "3.1.0"
description = "A library to interface with the discontinued Microsoft Band and Microsoft Band 2"
authors = [
"<ku.taram@erih> nerB taraM"
]
license = "GOODIDEA2"
readme = "README.md"
packages = [
{ include = "msband", from = "src" }
]
include = [
{ path = "examples" },
"LICENSE",
"README.md",
"pyproject.toml",
]
repository = "https://github.com/hire-marat/msband"
[tool.poetry.dependencies]
python = "^3.10" # for dataclasses kwonly
bleak = "^0.14" # for connecting via BLE
construct = "*" # for packing and unpacking wire formats
construct-typing = "0.5.2" # typehints and objects for the wire formats
pillow = "^9.1" # for image processing
pyusb = "^1.2" # for interfacing via USB
[tool.poetry.dev-dependencies] # development assistance
ipython = "*" # nice console + PyCharm integration
poetry = "*" # for ease of updating
pyperclip = "*" # for ease of copy/paste
python-pcapng = "*" # for parsing Wireshark sessions
[tool.poetry.dev-dependencies.black] # for code formatting
version = "*"
extras = ["d"]
[tool.black]
line-length = 100
[build-system]
requires = ["poetry-core>=1.0.7"]
build-backend = "poetry.core.masonry.api"