Metadata-Version: 2.4
Name: cal-pystats
Version: 0.4.1
Summary: A simple CLI tool to analyse Python file statistics in a directory
Project-URL: Repository, https://gitlab.com/cyberassessmentlabs/public/tools/cal-pystats
Project-URL: Documentation, https://cyberassessmentlabs.gitlab.io/public/docs/cal-pystats/latest/
Author: Cyber Assessment Labs
License-Expression: MIT
License-File: LICENSE
Keywords: cli,code-analysis,metrics,python,statistics
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.12
Description-Content-Type: text/markdown

# cal-pystats

A simple CLI tool that scans directories for Python files and displays statistics.

## Features

- Recursively scans directories for `.py` files
- Reports:
  - Number of Python files
  - Total size (KB/MB)
  - Total lines
  - Code lines (excluding blank lines and comments)
- Beautiful ASCII box output with ANSI colours (when running in a terminal)
- Plain text and JSON output formats available

## Installation

```bash
# Using uv
uv pip install cal-pystats

# Using pip
pip install cal-pystats
```

## Usage

```bash
# Scan current directory
cal-pystats

# Scan a specific directory
cal-pystats /path/to/project

# Plain text output (no box)
cal-pystats --plain

# JSON output
cal-pystats --json
```

### Example Output

```
╭────────────────────────────────╮
│     Python Stats: my-project   │
│────────────────────────────────│
│  Files       :            42   │
│  Total Size  :       128.5 KB  │
│  Total Lines :         3,847   │
│  Code Lines  :         2,691   │
╰────────────────────────────────╯
```

## Development

```bash
# Set up development environment
make dev

# Run linting and type checks
make check

# Format code
make format

# Build wheel and docs
make build
```

## Publishing

Publishing requires `cal-publish-python` configuration. See the [cal-publish-python documentation](https://cyberassessmentlabs.gitlab.io/public/docs/cal-publish-python/latest/) for setup.

```bash
# Build first
make build

# Publish wheel to PyPI and docs to GitLab Pages
make publish
```

## Licence

MIT License — Copyright (c) 2026 Cyber Assessment Labs
