-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
39 lines (33 loc) · 1.1 KB
/
pyproject.toml
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
[tool.poetry]
name = "async-signals"
version = "0.1.8"
description = "Async version of the Django signals class - for usage in for example FastAPI."
authors = ["TEAM23 GmbH <[email protected]>"]
license = "BSD-3-Clause"
repository = "https://github.com/team23/async-signals"
readme = "README.md"
packages = [{include = "async_signals"}]
[tool.poetry.dependencies]
python = "^3.9"
[tool.poetry.group.dev.dependencies]
pytest = ">=7.1.3,<9.0.0"
pytest-cov = ">=3,<7"
pytest-mock = "^3.8.2"
anyio = {extras = ["trio"], version = ">=3.6.1,<5.0.0"}
tox = ">=3.26,<5.0"
ruff = ">=0.5.0,<0.8.0"
pyright = ">=1.1.350,<1.2"
[tool.ruff]
line-length = 115
target-version = "py39"
output-format = "grouped"
[tool.ruff.lint]
select = ["F","E","W","C","I","N","UP","ANN","S","B","A","COM","C4","T20","PT","ARG","TD","RUF"]
ignore = ["A001","A002","A003","ANN101","ANN102","ANN401","C901","N8","B008","F405","F821"]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]
"conftest.py" = ["S101","ANN","F401"]
"test_*.py" = ["S101","ANN","F401","ARG001"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"