-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (39 loc) · 1.1 KB
/
pyproject.toml
File metadata and controls
48 lines (39 loc) · 1.1 KB
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
[project]
name = "flockwave-spec"
version = "2.7.0"
description = "JSON-Schema specification of the Flockwave protocol"
authors = [{ name = "Tamas Nepusz", email = "tamas@collmot.com" }]
license = "GPL-3.0-or-later"
requires-python = ">=3.10"
dependencies = ["jsonpointer>=3.0", "jsonref>=1.1.0"]
[project.optional-dependencies]
validation = ["fastjsonschema>=2.20.0"]
cli = ["click>=8.1.4", "flockwave-spec[validation]"]
[dependency-groups]
dev = [
"flockwave-spec[validation]",
"pytest>=8.1.0",
"coverage[toml]>=7.2.7",
"pytest-cov>=5.0.0",
]
[tool.ruff]
lint.ignore = ["B905", "C901", "E402", "E501"]
lint.select = ["B", "C", "E", "F", "W"]
[tool.uv.build-backend]
module-name = "flockwave"
namespace = true
[[tool.uv.index]]
name = "fury"
url = "https://pypi.fury.io/skybrush/"
publish-url = "https://pypi.fury.io/skybrush/"
[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 = ["uv_build>=0.10,<0.11"]
build-backend = "uv_build"