-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
62 lines (54 loc) · 1.24 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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 100
skip-string-normalization = true
target-version = ["py38"]
[tool.ruff]
line-length = 100
select = [
# Pyflakes
"F",
# pycodestyle
"E",
# isort
"I",
]
src = ["django_ntfy", "tests"]
[tool.ruff.isort]
known-first-party = ["django_ntfy"]
[tool.pytest.ini_options]
pythonpath = "."
testpaths = "tests"
DJANGO_SETTINGS_MODULE = "tests.settings"
[tool.poetry]
name = "django-ntfy"
version = "0.1.1"
description = "Django's email backend which is used to send messages to ntfy.sh"
authors = ["Stepan Henek <[email protected]>"]
repository = "https://github.com/Big-Dig-Data/django-ntfy"
license = "MIT"
classifiers = [
"Programming Language :: Python :: 3",
"Framework :: Django",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: MIT License",
]
keywords = ["ntfy", "email backend"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.8"
Django = ">=4.2.0"
requests = "^2.31"
[tool.poetry.dev-dependencies]
black = "23.11.0"
build = "~1.0.3"
mypy = "^1.7"
pre-commit = "~3.5.0"
pytest = "~7.4.3"
pytest-cov = "~4.1.0"
pytest-django = "~4.7.0"
responses = ">=0.24.0"
ruff = "~0.1.5"
types-requests = "*"