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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
# Changelog

## Unreleased

### Packaging

- Add PyPI `keywords` and Trove `classifiers` to `create-awesome-python-app` and `create-python-app-core` `pyproject.toml` so the packages are discoverable on PyPI by scaffold/fastapi/django/celery/typer/uv/cli themes and filtered by Python version, license, and topic (#246).

## 0.2.11 - 2026-07-23

### CLI / argv after template URL
Expand Down
29 changes: 29 additions & 0 deletions packages/create-awesome-python-app/pyproject.toml
Original file line numberDiff line numberDiff line change
Expand Up@@ -5,6 +5,35 @@ description = "Composable scaffolding CLI for production-ready Python apps"
readme = "README.md"
requires-python = ">=3.12"
license = "MIT"
keywords = [
"scaffold",
"scaffolding",
"cookiecutter",
"fastapi",
"django",
"celery",
"typer",
"uv",
"cli",
"project-generator",
"starter",
"boilerplate",
"template",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Code Generators",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"Typing :: Typed",
]
dependencies = [
"create-python-app-core>=0.2.10",
"questionary>=2.1.1",
Expand Down
6 changes: 3 additions & 3 deletions packages/create-python-app-core/README.md
Original file line numberDiff line numberDiff line change
Expand Up@@ -75,9 +75,9 @@ from create_python_app_core import resolve_source, get_template_dir_path
source = resolve_source(
"https://github.com/Create-Python-App/cpa-templates?ref=main&subdir=fastapi"
)
print(source.kind) # github
print(source.ref) # main
print(source.subdir) # fastapi
print(source.kind) # github
print(source.ref) # main
print(source.subdir) # fastapi
```

### Download a repository into the cache
Expand Down
22 changes: 22 additions & 0 deletions packages/create-python-app-core/pyproject.toml
Original file line numberDiff line numberDiff line change
Expand Up@@ -5,6 +5,28 @@ description = "Scaffolding engine for Create Awesome Python App"
readme = "README.md"
requires-python = ">=3.12"
license = "MIT"
keywords = [
"scaffold",
"scaffolding",
"scaffolding-engine",
"template",
"jinja2",
"project-generator",
"starter",
"boilerplate",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Code Generators",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
dependencies = [
"httpx>=0.28.1",
"jinja2>=3.1.0",
Expand Down
Loading