-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (48 loc) · 1.3 KB
/
pyproject.toml
File metadata and controls
58 lines (48 loc) · 1.3 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
49
50
51
52
53
54
55
56
57
58
[project]
name = "flockwave-app-framework"
version = "3.6.0"
description = "Generic app framework for CLI based apps in the Skybrush suite"
authors = [{ name = "Tamas Nepusz", email = "tamas@collmot.com>" }]
license = "MIT"
requires-python = ">=3.10"
dependencies = [
"trio (>=0.30.0)",
"json5 (>=0.12.0)",
"exceptiongroup (>=1.3.0)",
"tomli (>=2.2.1) ; python_version < \"3.11\"",
]
[project.optional-dependencies]
asgi = ["uvicorn[standard] (>=0.34.3)"]
daemon = ["flockwave-conn (>=9.2.0)", "flockwave-ext>=1.27.0"]
console = ["urwid-uikit>=2.1.1"]
[dependency-groups]
dev = [
"pytest>=8.4.1",
"coverage[toml]>=7.9.1",
"pytest-cov>=6.2.1",
"flockwave-app-framework[asgi, daemon, console]",
]
[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.uv.sources]
flockwave-conn = { index = "fury" }
flockwave-ext = { index = "fury" }
urwid-uikit = { index = "fury" }
[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 = ["uv-build>=0.9"]
build-backend = "uv_build"