Metadata-Version: 2.1
Name: bulk_restore_tool
Version: 0.1.0
Summary: Code42 Bulk Restore Tool
Project-URL: Documentation, 
Project-URL: Issues, 
Project-URL: Source, 
Author-email: Code42 Software <integrations@code42.com>
License-Expression: MIT
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.7
Requires-Dist: click
Requires-Dist: httpx
Requires-Dist: pydantic[dotenv]
Requires-Dist: rich
Requires-Dist: sqlite-utils
Description-Content-Type: text/markdown

# Bulk Restore Tool (BRT)

The `brt` command-line tool enables efficient restoring of the contents of a Code42 preservation archive without the
need to install a Code42 agent on the target machine.

# Developer Setup

The BRT project uses [hatch](https://hatch.pypa.io/latest/install/) for project management, this includes defining
dependencies, running tests, producing build artifacts, and publishing the package to a Python Package Index (PyPI or
in this case our local Artifactory).

Once `hatch` is installed, from this repository root, run: 

```bash
hatch env create
```

This will create the `default` virtual environment and install the `brt` package in "development" mode (meaning any 
changes to the source will apply in the environment).

To run tests without coverage report:

```bash
hatch run test
```

To run linters:

```bash
hatch run lint
```

To run `mypy` (static type analyzer):

```bash
hatch run typecheck
```

To run tests against _all_ supported python versions (python3.7 through python3.11) that are installed on your system:

```bash
hatch run matrix:test
```

To build `pip` installable artifacts:

```bash
hatch build
```
