Metadata-Version: 2.1
Name: stakeout
Version: 1.0.2
Summary: A tool to inspect source code ownership.
Author-email: Dmitry Zolotaryov <dmitry@zolotaryov.com>
Project-URL: Homepage, https://github.com/dmitry-zolotaryov/stakeout
Project-URL: Issues, https://github.com/dmitry-zolotaryov/stakeout/issues
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE

Stakeout
========

This project allows you to inspect the ownership of a project using the OWNERSHIP file.

Usage
-----

Full inspection

```bash
> stakeout .
Unowned: 300
@team-a: 1200
@team-b: 4000
Total: number of files: 5000
```

Inspect a single file or directory

```bash
> stakeout . --file=README.md
@team-a
```

List all files owned by a single team

```bash
> stakeout . --team=team-a
./README.md
```

Develop
-------

```bash
python3 -m venv .env
source ./env/bin/activate
python3 -m pip install -r requirements.txt
```

Distribute
----------

```bash
python3 -m build
python3 -m twine upload dist/*
```
