Metadata-Version: 2.4
Name: inseven-build-tools
Version: 1.0.1
Summary: Collection of convenience build tools
Author-email: Jason Morley <hello@jbmorley.co.uk>
License-Expression: MIT
Description-Content-Type: text/markdown
Requires-Dist: fastcommand
Requires-Dist: requests

# Build Tools

Collection of convenience build tools

## Autocomplete

`build-tools` supports autocomplete using [`argcomplete`](https://kislyuk.github.io/argcomplete/):

1. Install `argcomplete` through your package manager of choice. For example,

  ```sh
  uv tool install argcomplete
  ```

2. Enable autocomplete by adding one of the following to your shell startup file (`~/.zshrc`,  `~/.bashrc`, etc):

- for just `build-tools`:

  ```sh
  eval "$(register-python-argcomplete build-tools)"
  ```

- or globally:

  ```sh
  activate-global-python-argcomplete
  ```

