Metadata-Version: 2.4
Name: cvalchemix
Version: 0.1.1
Summary: LinkedIn job scraper and CV analysis toolkit
Author-email: kayees <kayesfardows@gmail.com>
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: google-genai>=1.73.0
Requires-Dist: jinja2>=3.1.6
Requires-Dist: platformdirs>=4.9.6
Requires-Dist: playwright>=1.58.0
Requires-Dist: pydantic-settings>=2.13.1
Requires-Dist: tenacity>=9.1.2
Requires-Dist: typer[all]>=0.16.0

# CVAlchemix

Install and run the CLI with a single command.

## One-command install

### macOS and Linux

```bash
curl -fsSL https://raw.githubusercontent.com/kayesFerdous/CVAlchemix/main/install.sh | bash
```

If you do not have `curl`:

```bash
wget -qO- https://raw.githubusercontent.com/kayesFerdous/CVAlchemix/main/install.sh | bash
```

### Windows (PowerShell)

```powershell
irm https://raw.githubusercontent.com/kayesFerdous/CVAlchemix/main/install.ps1 | iex
```

## Verify install

```bash
cvalchemix --help
```

## Local development install

From a local clone of this repository:

```bash
./install.sh
```

or on Windows:

```powershell
.\install.ps1
```

## Optional custom source

You can override the install source (local path, wheel, git URL) with:

```bash
CVALCHEMIX_INSTALL_TARGET='git+https://github.com/your-org/your-repo.git' ./install.sh
```
