Metadata-Version: 2.4
Name: primetime
Version: 1.0.1
Summary: Fast prime number toolkit CLI
Author: Abhrankan Chakrabarti
License: MIT
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# PrimeTime 🦊

Fast, dependency-free prime number toolkit CLI in pure Python.

```bash
# Install via PyPI (coming soon)
pip install primetime

# Or clone & run
./primetime generate 10000000 --progress
```

### Features
- Deterministic Miller-Rabin primality test
- Optimized segmented sieve (O(√N) memory)
- Count-only mode (`--count`) for huge limits
- Progress reporting (`--progress`)
- JSON export
- Symlink support (`ptgen`, `pttest`, etc.)

### Usage Examples
```bash
./ptgen 10_000_000                    # Full list + JSON
./ptgen 1_000_000_000 --count         # Fast count only
./ptgen 50_000_000 --progress         # Live progress
./pttest 2027
```

### Symlinks (recommended)
```bash
ln -s primetime.py ptgen
ln -s primetime.py pttest
```
