-
-
Notifications
You must be signed in to change notification settings - Fork 803
/
pyproject.toml
80 lines (70 loc) · 1.62 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
74
75
76
77
78
79
80
[project]
name = "Flask-Login"
version = "0.7.0.dev"
description = "User authentication and session management for Flask."
readme = "README.md"
license = { file = "LICENSE" }
maintainers = [{ name = "Max Countryman" }]
authors = [{ name = "Matthew Frazier" }]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: Flask",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
]
requires-python = ">=3.8"
dependencies = [
"flask>=2.3",
"werkzeug>=2.3.2",
]
[project.urls]
Documentation = "https://flask-login.readthedocs.io"
Source = "https://github.com/maxcountryman/flask-login/"
[build-system]
requires = ["flit_core<4"]
build-backend = "flit_core.buildapi"
[tool.flit.module]
name = "flask_login"
[tool.flit.sdist]
include = [
"CHANGES.md",
"tox.ini",
"requirements*/",
"docs/",
"tests/",
]
exclude = [
"docs/_build/",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
filterwarnings = [
"error",
]
[tool.coverage.run]
branch = true
source = ["flask_login", "tests"]
[tool.coverage.paths]
source = ["src", "*/site-packages"]
[tool.ruff]
src = ["src"]
fix = true
show-fixes = true
show-source = true
[tool.ruff.lint]
select = [
"B", # flake8-bugbear
"E", # pycodestyle error
"F", # pyflakes
"I", # isort
"UP", # pyupgrade
"W", # pycodestyle warning
]
ignore-init-module-imports = true
[tool.ruff.lint.isort]
force-single-line = true
order-by-type = false