Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
flockwave-app-framework / pyproject.toml
Size: Mime:
[tool.poetry]
name = "flockwave-app-framework"
version = "3.0.1"
description = "Generic app framework for CLI based apps in the Skybrush suite"
authors = ["Tamas Nepusz <tamas@collmot.com>"]
packages = [{ include = "flockwave", from = "src" }]
license = "MIT"

[[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.poetry.dependencies]
python = "^3.9"
trio = ">=0.24.0"
flockwave-conn = { version = "^7.0.0", optional = true, source = "fury" }
flockwave-ext = { version = "^1.24.2", optional = true, source = "fury" }
urwid-uikit = { version = "^2.0.1", optional = true, source = "fury" }
uvicorn = { version = ">=0.23.2", optional = true, extras = ["standard"] }
json5 = ">=0.9.14"
exceptiongroup = "^1.1.3"

[tool.poetry.group.dev.dependencies]
pytest = "^8.0.0"
coverage = { extras = ["toml"], version = "^7.3.0" }
pytest-cov = "^5.0.0"

[tool.poetry.extras]
asgi = ["uvicorn"]
daemon = ["flockwave-conn", "flockwave-ext"]
console = ["urwid-uikit"]

[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 = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"