Metadata-Version: 2.4
Name: jit-setup
Version: 0.1.0
Summary: AI-powered project environment setup — scan, configure, verify, done.
Author: jit-setup contributors
License-Expression: Apache-2.0
Project-URL: Homepage, https://github.com/jit-setup/jit
Project-URL: Repository, https://github.com/jit-setup/jit
Project-URL: Issues, https://github.com/jit-setup/jit/issues
Keywords: setup,environment,ai,agent,cli,devtools
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Build Tools
Classifier: Topic :: System :: Installation/Setup
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# jit

AI-powered project environment setup. One command to scan, configure, and verify your dev environment.

## Install

```bash
pip install jit-setup
```

## Usage

```bash
# Set up current directory
jit

# Set up a specific project
jit /path/to/project

# Clone and set up from GitHub
jit https://github.com/user/repo

# Auto-confirm system-level operations
jit --yes
```

## What it does

1. Scans your project structure (languages, dependencies, config files)
2. Detects what needs to be installed and configured
3. Creates virtual environments, installs dependencies
4. Handles `.env` variables interactively
5. Runs verification to confirm everything works

Supports Python, Node.js, Rust, Go, Docker, and more.

## Custom LLM

By default, `jit` uses a free community API. To use your own:

```bash
# Configure in ~/.jitx/config.json
{
  "llm": {
    "base_url": "https://api.openai.com/v1",
    "api_key": "sk-xxx",
    "model": "gpt-4o"
  }
}
```

## License

Apache-2.0
