Skip to content

Commit 5459ad6

Browse files
authored
Update README.md
1 parent 867c3ae commit 5459ad6

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,16 @@
1212

1313
**It's an ORM for your package managers, providing nice python types for packages + installers.**
1414

15-
**This is a [Python library](https://pypi.org/project/abxpkg/) and all-in-one CLI for installing & managing packages locally with a variety of package managers.**
15+
**This is a [Python library](https://pypi.org/project/abxpkg/) and all-in-one CLI for managing packages locally with a variety of package managers.**
1616
It's designed for when you have to detect or install binary or source dependencies at runtime.
1717

1818
Stop distributing your apps via `curl | sh`! Instead you can bake package installation into your app, or use our `uv`-style [`abxpkg run --script`](https://github.com/ArchiveBox/abxpkg/#shebang-line-in-scripts) shebang headers to auto-install dependencies for you.
1919

2020

2121
```bash
2222
pip install abxpkg
23+
24+
abxpkg --version
2325
```
2426

2527
```python
@@ -67,14 +69,16 @@ for binary in dependencies:
6769

6870
<br/>
6971

72+
---
73+
7074
> [!TIP]
7175
> **🔒 Stay safe from supply-chain attcaks with `abxpkg`:** We default to safe behavior (when providers allow):
7276
>
7377
> - `min_release_age=7` (we only install packages that have been published for 7 days or longer)
7478
> - `postinstall_scripts=False` (we don't run post-install scripts for packages by default)
7579
> - `install_root=<platform default abx lib dir>` (the CLI defaults to a dedicated provider-rooted library dir so host system stays clean)
7680
>
77-
> You can customize these defaults on `Binary` or `BinProvider`, or with `ABXPKG_MIN_RELEASE_AGE`/`ABXPKG_POSTINSTALL_SCRIPTS=`/`ABXPKG_NO_CACHE`/`ABXPKG_LIB_DIR` (see [Configuration](#Configuration) below).
81+
> You can customize these defaults on `Binary` or `BinProvider`, or with `ABXPKG_MIN_RELEASE_AGE`/`ABXPKG_POSTINSTALL_SCRIPTS`/`ABXPKG_LIB_DIR` (see [Configuration](#Configuration) below).
7882
7983
---
8084

0 commit comments

Comments
 (0)