Metadata-Version: 2.4
Name: pynstall
Version: 0.1.0
Summary: Turn your Python scripts into proper Windows apps - venv-aware shortcuts with taskbar pinning
Project-URL: Homepage, https://github.com/tmj/pynstall
Project-URL: Repository, https://github.com/tmj/pynstall
Project-URL: Issues, https://github.com/tmj/pynstall/issues
Author: TMJ
License-Expression: MIT
License-File: LICENSE
Keywords: app,desktop,installer,launcher,shortcut,taskbar,venv,windows
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Environment :: Win32 (MS Windows)
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Desktop Environment
Classifier: Topic :: Software Development :: Build Tools
Classifier: Topic :: System :: Installation/Setup
Requires-Python: >=3.9
Requires-Dist: click>=8.0
Requires-Dist: tomli>=2.0; python_version < '3.11'
Provides-Extra: appid
Requires-Dist: pywin32>=306; extra == 'appid'
Provides-Extra: dev
Requires-Dist: pytest>=7.0; extra == 'dev'
Requires-Dist: pywin32>=306; extra == 'dev'
Description-Content-Type: text/markdown

# pynstall

Turn your Python scripts into proper Windows apps.

**Live source execution** - your code runs from the actual `.py` files, not a frozen bundle. `git pull` and reopen = instant update. No rebuild, no redistribution.

## Features

- **Venv-aware** - Automatically finds and uses your project's virtual environment
- **Taskbar-friendly** - Sets AppUserModelID so pinned icons group correctly
- **No bundling** - Unlike PyInstaller, your code stays live and editable
- **Console hiding** - GUI apps launch without a console window (uses `pythonw.exe`)
- **Custom icons** - Use your own `.ico` file for the shortcut

## Installation

```bash
pip install pynstall
```

For full taskbar pinning support (recommended):
```bash
pip install pynstall[appid]
```

## Quick Start

### Option 1: Configure in pyproject.toml

Add to your `pyproject.toml`:

```toml
[tool.pynstall]
name = "My App"
entry = "myapp.main"  # module path or "main.py" for scripts
icon = "assets/icon.ico"  # optional
```

Then run:
```bash
pynstall install
```

### Option 2: Command-line only

```bash
pynstall install --name "My App" --entry myapp.main --icon ./icon.ico
```

## Usage

### Install

```bash
# From pyproject.toml config
pynstall install

# With explicit options
pynstall install --name "My App" --entry myapp.main

# Desktop + Start Menu
pynstall install --start-menu

# For console apps (show terminal window)
pynstall install --console
```

### Uninstall

```bash
# From pyproject.toml config
pynstall uninstall

# With explicit name
pynstall uninstall --name "My App"
```

## Configuration Options

### pyproject.toml

```toml
[tool.pynstall]
name = "My App"              # Required: display name
entry = "myapp.main"         # Required: module path or script.py
icon = "assets/icon.ico"     # Optional: custom icon
venv = "venv"                # Optional: venv path (auto-detected)
desktop = true               # Optional: create desktop shortcut (default: true)
start_menu = false           # Optional: create Start Menu entry (default: false)
appid = "Company.App.1.0"    # Optional: custom AppUserModelID (auto-generated)
console = false              # Optional: show console window (default: false)
```

### Command-line

```
pynstall install [OPTIONS]

Options:
  -n, --name TEXT           Display name for the application
  -e, --entry TEXT          Entry point - module or script
  -i, --icon TEXT           Path to .ico file
  --venv TEXT               Virtual environment path
  --desktop / --no-desktop  Create desktop shortcut (default: yes)
  --start-menu              Create Start Menu entry
  --appid TEXT              Windows AppUserModelID
  --console / --no-console  Show console window (default: no)
  -d, --project-dir PATH    Project directory
```

## Python API

```python
from pynstall import install_app, uninstall_app

# Install
result = install_app(
    name="My App",
    entry="myapp.main",
    icon="assets/icon.ico",
    desktop=True,
    start_menu=True,
)

if result.success:
    print(f"Installed to: {result.desktop_shortcut}")

# Uninstall
uninstall_app(name="My App")
```

## How It Works

pynstall creates a Windows shortcut that:

1. Points to `pythonw.exe` in your venv (no console window for GUI apps)
2. Runs your entry point with `-m module.path` or direct script path
3. Sets the working directory to your project root
4. Includes a custom AppUserModelID for proper taskbar grouping

Because the shortcut runs your actual source files:
- Edit code → reopen app → see changes immediately
- `git pull` → reopen app → instant update
- No frozen executables, no rebuild step

## Requirements

- Windows (macOS/Linux support planned)
- Python 3.9+
- A virtual environment in your project

## Optional Dependencies

- `pywin32` - Required for AppUserModelID support (proper taskbar pinning)
  - Without it, shortcuts still work but may show duplicate icons when pinned
  - Install with: `pip install pynstall[appid]`

## License

MIT
