-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
58 lines (47 loc) · 1.38 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
[tool.poetry]
name = "flockwave-spec"
version = "2.2.0"
description = "JSON-Schema specification of the Flockwave protocol"
authors = ["Tamas Nepusz <[email protected]>"]
license = "GPL-3.0-or-later"
packages = [{ include = "flockwave", from = "src" }]
include = ["src/flockwave/spec/*.json"]
[tool.poetry.dependencies]
python = "^3.9"
click = { version = "^8.1.4", optional = true }
fastjsonschema = { version = "^2.20.0", optional = true }
jsonpointer = "^3.0"
jsonref = "^1.1.0"
deprecated = "^1.2.14"
[tool.poetry.group.dev.dependencies]
pytest = "^8.1.0"
coverage = { extras = ["toml"], version = "^7.2.7" }
pytest-cov = "^5.0.0"
[tool.poetry.extras]
validation = ["fastjsonschema", "referencing"]
cli = ["click", "fastjsonschema", "referencing"]
[[tool.poetry.source]]
name = "PyPI"
priority = "primary"
[[tool.poetry.source]]
name = "collmot"
url = "https://pypi.collmot.com/simple/"
priority = "explicit"
[[tool.poetry.source]]
name = "fury"
url = "https://pypi.fury.io/skybrush/"
priority = "supplemental"
[tool.ruff]
lint.ignore = ["B905", "C901", "E402", "E501"]
lint.select = ["B", "C", "E", "F", "W"]
[tool.coverage.paths]
source = ["src"]
[tool.coverage.run]
branch = true
source = ["src"]
[tool.coverage.report]
show_missing = true
exclude_lines = ["@abstractmethod", "@overload", "pragma: no cover"]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.core.masonry.api"