forked from hbldh/bleak
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
50 lines (44 loc) · 1.78 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
50
[tool.poetry]
name = "bleak"
version = "0.21.0a1"
description = "Bluetooth Low Energy platform Agnostic Klient"
authors = ["Henrik Blidh <[email protected]>"]
license = "MIT"
readme = "README.rst"
homepage = "https://github.com/hbldh/bleak"
documentation = "https://bleak.readthedocs.io"
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: AsyncIO",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Android",
]
[tool.poetry.urls]
"Changelog" = "https://github.com/hbldh/bleak/blob/develop/CHANGELOG.rst"
"Support" = "https://github.com/hbldh/bleak/discussions"
"Issues" = "https://github.com/hbldh/bleak/issues"
[tool.poetry.dependencies]
python = "^3.7"
async-timeout = { version = ">= 3.0.0, < 5", python = "<3.11" }
typing-extensions = { version = "^4.2.0", python = "<3.8" }
pyobjc-core = { version = "^9.0.1", markers = "platform_system=='Darwin'" }
pyobjc-framework-CoreBluetooth = { version = "^9.0.1", markers = "platform_system=='Darwin'" }
pyobjc-framework-libdispatch = { version = "^9.0.1", markers = "platform_system=='Darwin'" }
bleak-winrt = { version = "^1.2.0", markers = "platform_system=='Windows'" }
dbus-fast = { version = "^1.83.0", markers = "platform_system == 'Linux'" }
[tool.poetry.group.docs.dependencies]
Sphinx = { version = "^5.1.1", python = ">=3.8" }
sphinx-rtd-theme = "^1.0.0"
[tool.poetry.group.lint.dependencies]
black = "^22.1.0"
flake8 = { version = "^5.0.0", python = ">=3.8" }
[tool.poetry.group.test.dependencies]
asynctest = { version = "^0.13.0", python = "<3.8" }
pytest = "^7.0.0"
pytest-asyncio = "^0.19.0"
pytest-cov = "^3.0.0 "
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"