-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (58 loc) · 2.25 KB
/
Copy pathpyproject.toml
File metadata and controls
65 lines (58 loc) · 2.25 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
[project]
name = "simple_module_users"
version = "0.0.32"
description = "Email + password user management, admin invites, RBAC-ready — replaces Keycloak for simple_module apps"
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
requires-python = ">=3.12"
authors = [{ name = "Anto Subash", email = "antosubash@live.com" }]
keywords = ["simple-module", "users", "authentication", "fastapi-users", "admin"]
classifiers = [
"Development Status :: 3 - Alpha",
"Framework :: FastAPI",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Typing :: Typed",
]
dependencies = [
"simple_module_core==0.0.32",
"simple_module_db==0.0.32",
"simple_module_hosting==0.0.32",
"simple_module_settings==0.0.32",
"simple_module_auth==0.0.32",
# Pinned to a narrow range: `deps.py` relies on mutating CookieTransport
# fields after construction (see reconfigure_cookie_transport in backend.py).
# Bumping the major version requires re-checking those field names.
"fastapi-users[sqlalchemy,oauth]>=15,<16",
"aiosmtplib>=3.0",
"cachetools>=5.3",
"typer>=0.12",
]
[project.entry-points.simple_module]
users = "users.module:UsersModule"
[project.entry-points."simple_module_cli.cli_plugins"]
users = "users.cli:app"
[project.urls]
Homepage = "https://github.com/antosubash/simple_module_python"
Repository = "https://github.com/antosubash/simple_module_python"
Issues = "https://github.com/antosubash/simple_module_python/issues"
Changelog = "https://github.com/antosubash/simple_module_python/blob/main/CHANGELOG.md"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["users"]
[tool.hatch.build.targets.wheel.force-include]
"package.json" = "users/package.json"
[tool.uv.sources]
simple_module_core = { workspace = true }
simple_module_db = { workspace = true }
simple_module_hosting = { workspace = true }
simple_module_settings = { workspace = true }
simple_module_auth = { workspace = true }