-
Notifications
You must be signed in to change notification settings - Fork 57
/
pyproject.toml
59 lines (53 loc) · 1.41 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
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.coverage.run]
branch = true
source = ["sesame", "tests"]
[tool.poetry]
name = "django-sesame"
version = "3.2.2"
description = """\
Frictionless authentication with "Magic Links" \
for your Django project."""
license = "BSD-3-Clause"
authors = ["Aymeric Augustin <[email protected]>"]
readme = "README.rst"
repository = "https://github.com/aaugustin/django-sesame"
documentation = "https://django-sesame.readthedocs.io/"
keywords = ["authentication", "token-based-authentication"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
]
packages = [
{ include = "sesame", from = "src" },
]
[tool.poetry.dependencies]
django = ">=4.2"
python = ">=3.9"
ua-parser = { version = ">=0.15", optional = true }
[tool.poetry.dev-dependencies]
coverage = "*"
furo = "*"
sphinx = "*"
sphinx-autobuild = "*"
sphinx-copybutton = "*"
sphinxcontrib-spelling = { version = "*", optional = true }
ruff = "*"
toml = "*"
[tool.poetry.extras]
ua = ["ua-parser"]
[tool.ruff.lint]
select = [
"E", # pycodestyle
"F", # Pyflakes
"W", # pycodestyle
"I", # isort
]