-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
43 lines (35 loc) · 1.02 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
[tool.poetry]
name = "aio-usb-hotplug"
version = "6.0.0"
description = "Asynchronous generators yielding detected hotplug events on the USB buses"
license = "MIT"
readme = "README.md"
homepage = "https://github.com/ntamas/aio-usb-hotplug/"
repository = "https://github.com/ntamas/aio-usb-hotplug/"
authors = ["Tamas Nepusz <tamas@collmot.com>"]
packages = [{ include = "aio_usb_hotplug", from = "src" }]
[tool.poetry.dependencies]
python = "^3.8"
anyio = ">=3.7.1,<5"
pyudev = { version = ">=0.24.1", platform = "linux" }
pyusb = "^1.2.1"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
coverage = { extras = ["toml"], version = "^7.2.7" }
pytest-cov = "^4.1.0"
trio = ">=0.22.0"
[tool.poetry.scripts]
[tool.coverage.paths]
source = ["src"]
[tool.coverage.run]
branch = true
source = ["src"]
[tool.coverage.report]
show_missing = true
[tool.ruff]
ignore = ["B905", "C901", "E402", "E501"]
line-length = 80
select = ["B", "C", "E", "F", "W"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.masonry.api"