forked from yunojuno/django-magic-link
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
53 lines (50 loc) · 1.48 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
[tool.poetry]
name = "django-magic-link"
version = "0.5.1"
description = "Django app for managing tokenised 'magic link' logins."
license = "MIT"
authors = ["YunoJuno <[email protected]>"]
maintainers = ["YunoJuno <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/yunojuno/django-magic-link"
repository = "https://github.com/yunojuno/django-magic-link"
documentation = "https://github.com/yunojuno/django-magic-link"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 2.2",
"Framework :: Django :: 3.0",
"Framework :: Django :: 3.1",
"Framework :: Django :: 3.2",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
]
packages = [{ include = "magic_link" }]
[tool.poetry.dependencies]
python = "^3.7"
django = "^2.2 || ^3.0 || ^4.0"
[tool.poetry.dev-dependencies]
black = {version = "*", allows-prereleases = true}
coverage = "*"
flake8-bandit = "*"
flake8-blind-except = "*"
flake8-docstrings = "*"
flake8-logging-format = "*"
flake8-print = "*"
freezegun = "*"
isort = "*"
mypy = "*"
pre-commit = "*"
pytest = "*"
pytest-cov = "*"
pytest-django = "*"
pyupgrade = "*"
tox = "*"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"