aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/pyproject.toml
blob: 4788ac8278a0e32c26d034248c9e528040dca02a (plain) (blame)
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
[tool.poetry]
name = "quarg"
version = "1.0.0"
description = "Search Quassel logs for matching messages and print them"
authors = ["Wolfgang Müller <wolf@oriole.systems>"]
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 = "^2.0.0"
python-dateutil = "^2.8.2"

[tool.poetry.scripts]
quarg = 'quarg.main:main'

[tool.poetry.group.dev.dependencies]
ruff = "^0.3.1"
psycopg-binary = "^3.1.8"
psycopg = "^3.1.8"

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

[tool.ruff.lint]
select = ["E", "F", "I", "W"]
ignore = ["E501"]