Metadata-Version: 2.4
Name: pygemchat
Version: 0.3.3
Summary: A simple AI chatbot package for OpenAI and Gemini.
Project-URL: Homepage, https://example.com/project-upload
Project-URL: Source, https://example.com/project-upload
Project-URL: Documentation, https://example.com/project-upload
Requires-Python: >=3.11
Description-Content-Type: text/markdown
License-File: LICENSE
Provides-Extra: openai
Requires-Dist: openai>=1.0; extra == "openai"
Provides-Extra: gemini
Requires-Dist: google-genai>=1.0; extra == "gemini"
Provides-Extra: rich
Requires-Dist: rich>=13.0; extra == "rich"
Provides-Extra: dev
Requires-Dist: build>=1.0; extra == "dev"
Requires-Dist: twine>=4.0; extra == "dev"
Dynamic: license-file

﻿# Project Upload

A simple AI chatbot package for OpenAI and Gemini.

## Install

```bash
pip install .
```

To install optional support packages:

```bash
pip install .[openai,gemini,rich]
```

## Run

```bash
python -m project_upload
```

## Build and Upload

```bash
python -m build
python -m twine upload dist/*
```
