-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
68 lines (63 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
63
64
65
66
67
68
[tool.black]
line-length = 100
exclude = '''
(
\.eggs
|\.git
|\.hg
|\.mypy_cache
|\.nox
|\.tox
|\.venv
|_build
|buck-out
|build
|dist
)
'''
[tool.isort]
line_length = 100
sections = ["FUTURE", "STDLIB", "DJANGO", "THIRDPARTY", "FIRSTPARTY", "LOCALFOLDER"]
multi_line_output = 3
known_django = "django"
profile = "django"
src_paths = "swap_user"
lines_after_imports = 2
[tool.poetry]
name = "django-swap-user"
version = "0.9.4"
description = "(Beta) Simple and flexible way to swap default Django User"
authors = ["Artem Innokentiev <[email protected]>"]
maintainers = ["Artem Innokentiev <[email protected]>"]
readme = "README.md"
keywords = [
"django",
"swap",
"user",
"custom",
"user",
"auth",
"model",
"email",
"username",
"phone",
"mixins",
"authentication",
]
license = "MIT"
repository = "http://github.com/artinnok/django-swap-user"
packages = [
{ include = "swap_user" },
]
[tool.poetry.dependencies]
python = "^3.6"
django = ">=2.2"
django-phonenumber-field = {extras = ["phonenumbers"], version = "^5.2.0"}
[tool.poetry.dev-dependencies]
black = "^19.10b0"
isort = "^5.1.4"
pytest = "^5.4.3"
mypy = "^0.782"
[build-system]
requires = ["poetry>=1.0.8"]
build-backend = "poetry.masonry.api"