-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
45 lines (37 loc) · 979 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
43
44
45
[tool.poetry]
name = "aiocflib"
version = "4.1.0"
description = "Python async API for Crazyflie drones"
authors = ["Tamas Nepusz <[email protected]>"]
license = "GPL-3.0-or-later"
packages = [{ include = "aiocflib", from = "src" }]
[tool.poetry.dependencies]
python = "^3.8"
anyio = "^4.1.0"
outcome = "^1.3.0.post0"
pyusb = "^1.2.1"
colorama = "^0.4.6"
hexdump = "^3.3"
colour = "^0.1.5"
exceptiongroup = { version = "^1.2.0", python = "<3.11" }
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.3"
coverage = { extras = ["toml"], version = "^7.3.2" }
pytest-cov = "^4.1.0"
tox = "^4.11.4"
trio = "^0.23.1"
tqdm = "^4.66.1"
[tool.poetry.extras]
[tool.coverage.paths]
source = ["src"]
[tool.coverage.run]
branch = true
source = ["src"]
[tool.coverage.report]
show_missing = true
[tool.ruff]
lint.ignore = ["B905", "C901", "E402", "E501"]
lint.select = ["B", "C", "E", "F", "W"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"