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:
[project]
name = "flockwave-app-framework"
version = "3.3.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.0.0)", "flockwave-ext>=1.27.0"]
console = ["urwid-uikit>=2.1.1"]

[tool.poetry]
packages = [{ include = "flockwave", from = "src" }]

[[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]
flockwave-conn = { source = "fury" }
flockwave-ext = { source = "fury" }
urwid-uikit = { source = "fury" }

[tool.poetry.group.dev.dependencies]
pytest = "^8.4.1"
coverage = { extras = ["toml"], version = "^7.9.1" }
pytest-cov = "^6.2.1"

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