-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
58 lines (51 loc) · 1.27 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
[tool.poetry]
name = "notifyme"
version = "1.2.1"
description = "A very simple apprise-based notification microservice."
authors = ["Sergei Nagaev <nagaev.sv@gmail.com>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
apprise = "1.4.5"
fastapi = {extras = ["all"], version = "0.101.1"}
uvicorn = {extras = ["standard"], version = "0.23.2"}
sentry-sdk = {extras = ["fastapi"], version = "1.29.2"}
requests = "2.31.0"
[tool.poetry.group.dev.dependencies]
black = "^22.12.0"
flake8 = "^6.0.0"
mypy = "^0.991"
isort = "^5.11.4"
flake8-isort = "^6.0.0"
ipython = "^8.8.0"
types-requests = "2.28.11.7"
httpx = "0.24.1"
pytest = "7.4.0"
pytest-mock = "3.11.1"
[tool.black]
line-length = 120
include = ".pyi?$"
skip-string-normalization = true
[tool.isort]
profile = "black"
[tool.mypy]
python_version = "3.10"
check_untyped_defs = true
files = "**/*.py"
follow_imports = "silent"
ignore_missing_imports = true
plugins = [ "pydantic.mypy" ]
show_column_numbers = true
strict = true
warn_redundant_casts = true
warn_unused_configs = true
warn_unused_ignores = true
[tool.flake8]
ignore = "E203,E266,H106,H904"
max-line-length = 120
exit-zero = true
exclude = " .git,__pycache__ "
[build-system]
requires = [ "poetry_core>=1.0.0" ]
build-backend = "poetry.core.masonry.api"