-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
79 lines (70 loc) · 2.21 KB
/
pyproject.toml
File metadata and controls
79 lines (70 loc) · 2.21 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
75
76
77
78
79
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "hawkapi-users"
version = "0.1.0"
description = "User lifecycle for HawkAPI — register, login, password reset, email verification, on top of hawkapi-auth + hawkapi-sqlalchemy + hawkapi-mail"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.12"
authors = [
{ name = "HawkAPI Contributors", email = "hawkapi@users.noreply.github.com" },
]
keywords = ["hawkapi", "users", "authentication", "password-reset", "email-verification"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Security",
"Typing :: Typed",
]
dependencies = [
"hawkapi>=0.1.7",
"hawkapi-auth>=0.2.0",
"hawkapi-sqlalchemy>=0.2.0",
"hawkapi-mail>=0.2.0",
"sqlalchemy[asyncio]>=2.0",
"jinja2>=3.1",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.24",
"aiosqlite>=0.20",
"ruff>=0.8",
"pyright>=1.1",
]
[project.urls]
Homepage = "https://pypi.org/project/hawkapi-users/"
Repository = "https://github.com/Hawk-API/hawkapi-users"
Issues = "https://github.com/Hawk-API/hawkapi-users/issues"
[tool.hatch.build.targets.wheel]
packages = ["src/hawkapi_users"]
artifacts = ["src/hawkapi_users/templates/*.html", "src/hawkapi_users/templates/*.txt"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
filterwarnings = ["ignore::DeprecationWarning"]
[tool.ruff]
target-version = "py312"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM", "S"]
ignore = ["S101", "S105", "S110", "B008", "SIM105", "SIM108", "SIM113"]
[tool.ruff.lint.per-file-ignores]
"tests/**" = ["S"]
[tool.pyright]
pythonVersion = "3.12"
typeCheckingMode = "strict"
reportUnknownVariableType = false
reportUnknownMemberType = false
reportUnknownArgumentType = false
reportMissingTypeStubs = false
reportUntypedFunctionDecorator = false
reportGeneralTypeIssues = false