-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
64 lines (53 loc) · 1.2 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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
py_version = 39
src_paths = "hippocrates/"
line_length = 65536
force_single_line = true
force_sort_within_sections = true
honor_noqa = true
multi_line_output = 7
verbose = false
sections = [
"FUTURE",
"STDLIB",
"THIRDPARTY",
"LOCALFOLDER",
]
[tool.mypy]
python_version = 3.9
mypy_path = ["formsg", "tests"]
show_error_codes = true
check_untyped_defs = true
disallow_untyped_decorators = true
disallow_incomplete_defs = true
disallow_untyped_defs = true
disallow_untyped_calls = true
disallow_any_generics = true
no_implicit_optional = true
strict_optional = true
warn_return_any = true
warn_unused_configs = true
warn_unreachable = true
warn_no_return = true
warn_redundant_casts = true
warn_unused_ignores = true
show_traceback = true
raise_exceptions = true
[tool.poetry]
name = "formsg"
version = "0.1.8"
description = "A Python SDK for handling FormSG webhooks."
authors = ["5 Health Inc <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.9"
pynacl = ">=1.4.0"
requests = "*"
[tool.poetry.group.dev.dependencies]
mypy = "*"
flake8 = "*"
isort = "*"
types-requests = "*"