[tool.poetry] name = "quarg" version = "0.1.0" description = "Search Quassel logs for matching messages and print them" authors = ["Wolfgang Müller "] license = "MIT" homepage = "https://oriole.systems/posts/quarg" repository = "https://git.oriole.systems/quarg" documentation = "https://git.oriole.systems/quarg/about" classifiers = [ "Operating System :: OS Independent" ] [tool.poetry.dependencies] python = "^3.8" SQLAlchemy = "^1.4.0" python-dateutil = "^2.8.2" [tool.poetry.scripts] quarg = 'quarg.main:main' [tool.poetry.group.dev.dependencies] psycopg2-binary = "^2.9.5" ruff = "^0.0.260" [build-system] requires = ["poetry-core"] build-backend = "poetry.core.masonry.api" [tool.ruff] select = ["E", "F", "I", "W"] ignore = ["E501"]