Metadata-Version: 2.4
Name: visionprompt
Version: 0.1.0
Summary: Prompting tools for computer vision models
Author-email: Intel Open Edge Platform <open-edge-platform@intel.com>
License-Expression: Apache-2.0
License-File: LICENSE
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: Topic :: Scientific/Engineering :: Image Recognition
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# visionprompt

Prompting tools for computer vision models by Intel Open Edge Platform.

## Installation

Using uv (recommended):

```bash
uv pip install visionprompt
```

Using pip:

```bash
pip install visionprompt
```

## Usage

```python
import visionprompt

# Add usage examples here
```

## Development

To set up the development environment:

1. Install uv:

   ```bash
   curl -LsSf https://astral.sh/uv/install.sh | sh
   ```

2. Clone the repository:

   ```bash
   git clone https://github.com/open-edge-platform/visionprompt.git
   cd visionprompt
   ```

3. Create and activate a virtual environment:

   ```bash
   uv venv
   source .venv/bin/activate  # On Unix/macOS
   # or
   .venv\Scripts\activate  # On Windows
   ```

4. Install development dependencies:

   ```bash
   uv pip install -e ".[dev]"
   ```

## License

This project is licensed under the Apache License 2.0 - see the LICENSE file for details.

## Contributing

We welcome contributions! Please see our [Contributing Guide](CONTRIBUTING.md) for more details.
