Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions packages/create-awesome-python-app/README.md
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
# create-awesome-python-app

CLI package (stub). Entry point: `create-awesome-python-app`.

Depends on workspace member `create-python-app-core`.
4 changes: 4 additions & 0 deletions packages/create-awesome-python-app/pyproject.toml
Original file line numberDiff line numberDiff line change
Expand Up@@ -2,11 +2,15 @@
name = "create-awesome-python-app"
version = "0.0.0"
description = "Composable scaffolding CLI for production-ready Python apps (stub)"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"create-python-app-core",
]

[project.scripts]
create-awesome-python-app = "create_awesome_python_app.cli:main"

[tool.uv.sources]
create-python-app-core = { workspace = true }

Expand Down
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
"""CLI entrypoint placeholder (full Typer app lands in Epic 4)."""


def main() -> None:
print("create-awesome-python-app stub — see roadmap issue #1")
3 changes: 3 additions & 0 deletions packages/create-python-app-core/README.md
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
# create-python-app-core

Programmatic scaffolding engine (stub). Consumed by `create-awesome-python-app`.
1 change: 1 addition & 0 deletions packages/create-python-app-core/pyproject.toml
Original file line numberDiff line numberDiff line change
Expand Up@@ -2,6 +2,7 @@
name = "create-python-app-core"
version = "0.0.0"
description = "Scaffolding engine for Create Awesome Python App (stub)"
readme = "README.md"
requires-python = ">=3.12"
dependencies = []

Expand Down