Metadata-Version: 2.1
Name: clicerin
Version: 0.1.0
Summary: CLI for your quality of life
Author: Irwanto Cia
Author-email: irwantocia@gmail.com
Requires-Python: >=3.12,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: asyncio (>=3.4.3,<4.0.0)
Requires-Dist: numpy (>=2.2.0,<3.0.0)
Requires-Dist: openai (>=1.57.1,<2.0.0)
Requires-Dist: pyaudio (>=0.2.14,<0.3.0)
Requires-Dist: pydub (>=0.25.1,<0.26.0)
Requires-Dist: requests (>=2.32.3,<3.0.0)
Requires-Dist: soundfile (>=0.12.1,<0.13.0)
Requires-Dist: textual (>=1.0.0,<2.0.0)
Requires-Dist: typer (>=0.15.1,<0.16.0)
Description-Content-Type: text/markdown

<div align="center">

# 🎯 Clicerin

*A modern CLI application built with Python Typer*

[![Python Version](https://img.shields.io/badge/python-3.12%2B-blue)](https://www.python.org/downloads/)
[![License](https://img.shields.io/badge/license-MIT-green)](LICENSE)

</div>

## 🖼️ Screenshots

## 🚀 Description

Clicerin is a command-line interface (CLI) application that allows you to [describe main functionality here].

## 📋 Prerequisites

Before using Clicerin, you need to set up your OpenAI API key:

```bash
# For Linux/macOS
export OPENAI_API_KEY='your-api-key-here'

# For Windows (PowerShell)
$env:OPENAI_API_KEY='your-api-key-here'
```

## 💻 Installation

```bash
# Using pip
pip install clicerin

# Or clone the repository and install with Poetry
git clone https://github.com/yourusername/clicerin.git
cd clicerin
poetry install
```

## 🎮 Usage

```bash
clicerin [command] [options]
```

### Commands

| Command | Description |
|---------|-------------|
| `command1` | Description of command1 |
| `command2` | Description of command2 |

### Options

| Option | Description |
|--------|-------------|
| `-h, --help` | Show help message and exit |
| `-v, --version` | Show program version |

### ✨ Examples

```bash
# Example 1
clicerin command1 --option1 value1

# Example 2
clicerin command2 --option2 value2
```

## 🛠️ Development

This project uses Poetry for dependency management. To set up the development environment:

```bash
# Install Poetry
curl -sSL https://install.python-poetry.org | python3 -

# Install dependencies
poetry install

# Run the CLI
poetry run clicerin
```

## 🤝 Contributing

1. Fork the repository
2. Create your feature branch (`git checkout -b feature/amazing-feature`)
3. Commit your changes (`git commit -m 'Add some amazing feature'`)
4. Push to the branch (`git push origin feature/amazing-feature`)
5. Open a Pull Request

## 📄 License

This project is licensed under the [License Name] - see the [LICENSE](LICENSE) file for details.

## 📬 Contact

**Your Name** - irwantocia@gmail.com

**Project Link:** [https://github.com/yourusername/clicerin](https://github.com/yourusername/clicerin)



