-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
73 lines (62 loc) · 1.53 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
[project]
name = "django-graphql-jwt-oauth2"
version = "1.2.3"
#authors = [
# { name="Example Author", email="[email protected]" },
#]
description = "An extension to django-graphene-jwt to allow oauth2 authentication to a Django app."
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/AztlanEngineering/django-graphql-jwt-oauth2"
Issues = "https://github.com/AztlanEngineering/django-graphql-jwt-oauth2/issues"
[tool.black]
line-length = 88
include = '\.pyi?$'
[tool.isort]
profile = "black"
line_length = 88
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
[tool.mypy]
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
exclude = [
#"django",
"graphql_jwt"
]
[[tool.mypy.overrides]]
module = "graphql_jwt"
ignore_errors = true
#disallow_untyped_defs = true
[tool.pylint."messages-control"]
max-args = 6
disable= [
"too-few-public-methods",
"f-string-without-interpolation" #Does not recognize the inteprolation
]
[tool.hatch]
[tool.hatch.build.targets.sdist]
packages = ["graphql_jwt_oauth2"]
exclude = [
"/.github",
"/docs",
]
[tool.hatch.build.targets.wheel]
packages = ["graphql_jwt_oauth2"]
exclude = [
"/.github",
"/docs",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"