-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
60 lines (49 loc) · 1.41 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
51
52
53
54
55
56
57
58
59
60
[tool.poetry]
name = "flockwave-conn"
version = "8.2.0"
description = "Connection objects for various data sources"
authors = ["Tamas Nepusz <[email protected]>"]
packages = [{ include = "flockwave", from = "src" }]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.9"
blinker = "^1.4"
trio = ">=0.26.2"
trio-util = ">=0.7.0"
flockwave-parsers = { version = "^2.0.0", source = "fury" }
pyserial = { version = "^3.5", optional = true }
tinyrpc = { version = "^1.1.7", extras = ["msgpack"], optional = true }
flockwave-net = { version = "^7.0.3", extras = ["async"], source = "fury" }
flockwave-async = { version = "^1.4.0", source = "fury" }
wrapt = "^1.16.0"
hexdump = "^3.3"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.2"
pytest-trio = ">=0.8.0"
pytest-cov = "^5.0.0"
coverage = { extras = ["toml"], version = "^7.0" }
[tool.poetry.extras]
rpc = ["tinyrpc"]
serial = ["pyserial"]
[[tool.poetry.source]]
name = "PyPI"
priority = "primary"
[[tool.poetry.source]]
name = "fury"
url = "https://pypi.fury.io/skybrush/"
priority = "supplemental"
[tool.coverage.paths]
source = ["src"]
[tool.coverage.run]
branch = true
source = ["src"]
[tool.coverage.report]
show_missing = true
[tool.pytest.ini_options]
trio_mode = true
[tool.ruff]
lint.ignore = ["B026", "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"