Skip to content

Commit

Permalink
bump 0.0.8, readme
Browse files Browse the repository at this point in the history
  • Loading branch information
ayasyrev committed Apr 6, 2024
1 parent 80e111a commit 12e150c
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 2 deletions.
34 changes: 33 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,34 @@
# nbmetaclean
nbmetaclean

Pre-commit hook to clean Jupyter Notebooks metadata, execution_count and optionally output.

Pure Python, no dependencies.

Can be used as a pre-commit hook or as a command line tool.

## Usage

### Pre-commit hook
add to `.pre-commit-config.yaml`:
```yaml
repos:
- repo: https://github.com/ayasyrev/nbmetaclean
rev: 0.0.8
hooks:
- id: nbclean
name: nbclean
entry: nbclean
```
### Command line tool
Install:
```bash
pip install nbmetaclean
```

Usage:

```bash
nbclean
```
2 changes: 1 addition & 1 deletion src/nbmetaclean/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.0.8_dev" # pragma: no cover
__version__ = "0.0.8" # pragma: no cover

0 comments on commit 12e150c

Please sign in to comment.