-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
42 lines (38 loc) · 880 Bytes
/
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
[project]
name = "ninebot-ble"
version = "0.0.6"
authors = [
{ name="ownbee" },
]
description = "Ninebot scooter BLE client"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
urls.homepage = "https://github.com/ownbee/ninebot-ble"
dependencies = [
"miauth==0.9.7",
"bleak",
"bleak-retry-connector",
"bluetooth-sensor-state-data",
"bluetooth-data-tools",
]
[project.optional-dependencies]
dev = [
"black",
"mypy",
]
[project.scripts]
ninebot-ble = "ninebot_ble.__main__:entrypoint"
[tool.mypy]
files = "src"
python_version = "3.10"
strict = true
show_error_codes = true
enable_error_code = ["ignore-without-code", "truthy-bool", "redundant-expr"]
[tool.black]
line-length = 120
skip-string-normalization = true