-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (55 loc) · 2.1 KB
/
Copy pathpyproject.toml
File metadata and controls
61 lines (55 loc) · 2.1 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
[project]
name = "simple_module_hosting"
version = "0.0.32"
description = "FastAPI + Inertia.js host runtime for simple_module — app_builder, middleware stack, CLI (sm / simple-module), scaffolding"
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
requires-python = ">=3.12"
authors = [{ name = "Anto Subash", email = "antosubash@live.com" }]
keywords = ["simple-module", "fastapi", "inertia", "starlette", "uvicorn", "scaffolding"]
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 :: WSGI :: Application",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Typing :: Typed",
]
dependencies = [
"click>=8.1",
"fastapi>=0.115",
"fastapi-inertia>=1.0",
"httpx>=0.27",
# SessionMiddleware (starlette.middleware.sessions) imports itsdangerous at
# module import time; starlette treats it as an optional extra, so declare
# it directly — out-of-tree hosts have nothing else pulling it in.
"itsdangerous>=2.0",
"jinja2>=3.1",
"simple_module_core==0.0.32",
"simple_module_db==0.0.32",
"starlette>=0.44",
"tomlkit>=0.13",
"uvicorn[standard]>=0.34",
]
[project.scripts]
sm-host = "simple_module_hosting.host_cli:app"
[project.entry-points."simple_module_cli.cli_plugins"]
host = "simple_module_hosting.host_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 = ["simple_module_hosting"]
[tool.uv.sources]
simple_module_core = { workspace = true }
simple_module_db = { workspace = true }