-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (65 loc) · 1.87 KB
/
pyproject.toml
File metadata and controls
74 lines (65 loc) · 1.87 KB
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
[project]
name = "flask_simplelogin"
version = "0.2.0"
description = "Flask Simple Login - Login Extension for Flask"
authors = [{ name = "Bruno Rocha", email = "rochacbruno@users.noreply.github.com" }]
requires-python = ">=3.10,<4"
readme = "README.md"
license = "MIT"
maintainers = [{ name = "Eduardo Cuducos", email = "cuducos@users.noreply.github.com" }]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Framework :: Flask",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"Flask>=1.0.0",
"Flask-WTF>1.1",
]
[project.urls]
Repository = "https://github.com/flask-extensions/Flask-SimpleLogin"
[dependency-groups]
dev = [
"ipdb>=0.13.13,<0.14",
"mypy>=1.17.1",
"pytest>=8.3.3,<9",
"pytest-cov>=5.0.0,<6",
"pytest-flask>=1.3.0,<2",
"pytest-mock>=3.14.0,<4",
"pytest-ruff>=0.4.1,<0.5",
"tox>=4.21.2,<5",
"tox-uv>=1.27.0,<2",
"types-wtforms>=3.2.1.20250809",
]
docs = [
"recommonmark>=0.7.1,<0.8",
"Sphinx>=8,<9",
"sphinx-markdown-tables>=0.0.17,<0.0.18",
"sphinx-rtd-theme>=3.0.1,<4",
]
[tool.uv]
[tool.ruff.lint]
select = ["A", "E", "F", "I", "N", "SIM", "TID"]
[[tool.uv.index]]
name = "pypi-public"
url = "https://pypi.org/simple/"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pytest.ini_options]
addopts = "--ruff --ruff-format --cov flask_simplelogin --cov-report term --cov-fail-under=70"
[tool.tox]
legacy_tox_ini = """
[tox]
isolated_build = true
envlist = py313, py312, py311, py310
[testenv]
commands = uv run pytest
"""