Metadata-Version: 2.4
Name: konecty-cli
Version: 1.0.0
Summary: Konecty CLI utilities
Author-email: Leonardo Leal <leonardo.leal@konecty.com>
License: MIT
Keywords: cli,konecty,sdk
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.11
Requires-Dist: click>=8.0.0
Requires-Dist: inquirer>=3.4.1
Requires-Dist: openai>=1.99.9
Requires-Dist: rich>=13.0.0
Requires-Dist: typer>=0.9.0
Provides-Extra: dev
Requires-Dist: black>=23.0.0; extra == 'dev'
Requires-Dist: flake8>=6.0.0; extra == 'dev'
Requires-Dist: isort>=5.12.0; extra == 'dev'
Requires-Dist: mypy>=1.0.0; extra == 'dev'
Requires-Dist: pytest-cov>=4.0.0; extra == 'dev'
Requires-Dist: pytest>=7.0.0; extra == 'dev'
Description-Content-Type: text/markdown

# Konecty CLI

A command-line interface for Konecty utilities.

### Using uvx (Recommended)

You can run the CLI directly using `uvx`:

```bash
uvx konecty-cli --help
```

## Development

This project uses Make to manage dev scripts. You can list available development commands with `make help`

### Setup Development Environment

Install development dependencies:

```bash
make install-dev
```

### Running Tests

```bash
# Run all tests
make test

# Run tests with coverage
make test-cov
```

### Code Quality

The project uses several tools to maintain code quality:

- **Black** - Code formatting
- **isort** - Import sorting
- **flake8** - Linting
- **mypy** - Type checking

Run all checks:

```bash
# Run all quality checks (format, lint, type-check, test)
make check

# Or run individual checks:
make format    # Format code with black and isort
make lint      # Run flake8 linter
make type-check # Run mypy type checker
```

### Building and Publishing

```bash
# Build the package
make build

# Clean build artifacts
make clean
```
