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
25 changes: 6 additions & 19 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,11 @@ on:

permissions:
contents: write # to create the GitHub Release
id-token: write # for PyPI OIDC trusted publishing

# PyPI publishing is intentionally manual via `make publish` (twine).
# This workflow builds the wheel + sdist and cuts a GitHub Release with
# the changelog slice and artifacts attached — the maintainer uploads
# to PyPI separately.

jobs:
build:
Expand All @@ -33,26 +37,9 @@ jobs:
name: dist
path: dist/

publish:
name: Publish to PyPI
needs: build
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/p/rglob
steps:
- name: Download artifacts
uses: actions/download-artifact@v4
with:
name: dist
path: dist/

- name: Publish (OIDC, no token)
uses: pypa/gh-action-pypi-publish@release/v1

github-release:
name: GitHub Release
needs: publish
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<!-- markdownlint-disable MD033 MD041 -->

```text
__ __
_________ _______/ /___ / /_
/ ___/ __ `/ ___/ / __ \/ __ \
/ / / /_/ / /__/ / /_/ / /_/ /
/_/ \__, /\___/_/\____/_.___/
/____/
____ ____ _ _
| _ \ / ___| | | ___ | |__
| |_) | | _ | |/ _ \| '_ \
| _ <| |_| | | | (_) | |_) |
|_| \_\\____| |_|\___/|_.__/
/ / / / /
```

<p align="center"><em>Lightweight recursive search for Python, CLIs, and coding agents.</em></p>
Expand Down
22 changes: 17 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,25 @@ build-backend = "hatchling.build"

[project]
name = "rglob"
description = "Lightweight recursive glob helpers for Python — find files, count lines, sum sizes."
description = "Lightweight recursive search for Python, CLIs, and coding agents — globs, content grep, stat/dup helpers, JSON-stable outputs, typed agent API, optional MCP server."
readme = "README.md"
requires-python = ">=3.11"
license = "Apache-2.0"
license-files = ["LICENSE"]
keywords = ["glob", "rglob", "recursive", "filesystem", "find", "line-counter"]
keywords = [
"glob",
"recursive",
"file-search",
"grep",
"cli",
"typer",
"mcp",
"model-context-protocol",
"coding-agents",
"agent-tooling",
"pathlib",
"typed",
]
authors = [
{ name = "Christopher Piekarski", email = "chris@cpiekarski.com" },
]
Expand Down Expand Up @@ -38,11 +51,10 @@ dependencies = [
]

[project.urls]
Homepage = "https://github.com/chris-piekarski/python-rglob"
Repository = "https://github.com/chris-piekarski/python-rglob"
Homepage = "https://chris-piekarski.github.io/python-rglob/"
Source = "https://github.com/chris-piekarski/python-rglob"
Issues = "https://github.com/chris-piekarski/python-rglob/issues"
Changelog = "https://github.com/chris-piekarski/python-rglob/blob/master/CHANGELOG.md"
Documentation = "https://chris-piekarski.github.io/python-rglob/"

[project.scripts]
rglob = "rglob.cli:main"
Expand Down
Loading