-
Notifications
You must be signed in to change notification settings - Fork 13
/
pyproject.toml
90 lines (83 loc) · 2.19 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
[build-system]
requires = ["poetry>=1.1.13"]
build-backend = "poetry.masonry.api"
[tool.black]
line-length = 99
target-version = ['py37']
skip-string-normalization = true
[tool.coverage.run]
branch = true
source = ["pgpubsub"]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"raise AssertionError",
"raise NotImplementedError",
"pass",
"pytest.mark.skip"
]
show_missing = true
fail_under = 100
[tool.poetry]
name = "django-pgpubsub"
packages = [
{ include = "pgpubsub" }
]
version = "1.3.1"
description = "A distributed task processing framework for Django built on top of the Postgres NOTIFY/LISTEN protocol."
authors = ["Opus 10 Engineering"]
classifiers = [
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3 :: Only",
"Framework :: Django",
]
license = "BSD-3-Clause"
readme = "README.md"
homepage = "https://github.com/Opus10/django-pgpubsub"
repository = "https://github.com/Opus10/django-pgpubsub"
documentation = "https://django-pgpubsub.readthedocs.io"
[tool.poetry.dependencies]
python = ">=3.7.0,<4"
django = ">=2"
django-pgtrigger = ">=4.7.0"
[tool.poetry.dev-dependencies]
black = "21.5b1"
dj-database-url = "0.5.0"
flake8 = "3.9.2"
flake8-bugbear = "22.1.11"
flake8-comprehensions = "3.8.0"
flake8-import-order = "0.18.1"
flake8-logging-format = "0.6.0"
flake8-mutable = "1.2.0"
git-tidy = "1.1.2"
packaging = ">=19.2"
pip = "*"
pre-commit = "2.13.0"
psycopg2-binary = "2.9.3"
pytest = "7.0.0"
pytest-cov = "3.0.0"
pytest-dotenv = "0.5.2"
pytest-django = "4.5.2"
pytest-mock = "3.7.0"
requests = "2.31.0"
Sphinx = "4.4.0"
sphinx-rtd-theme = "1.0.0"
temple = "*"
tox = "3.24.5"
zipp = "3.4.1"
[tool.pytest.ini_options]
xfail_strict = true
addopts = "--reuse-db"
testpaths = "pgpubsub/tests"
norecursedirs = ".venv"
log_cli = true
log_cli_level = "INFO"
DJANGO_SETTINGS_MODULE = "settings"
filterwarnings = ["ignore::DeprecationWarning:django.http.request:",
"ignore::DeprecationWarning:django.utils.encoding:"]