Metadata-Version: 2.4
Name: vahidlari_dummypkg
Version: 4.1.0
Summary: A dummy Python package for testing CI workflows
Author-email: Test Author <test@example.com>
License: MIT
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Provides-Extra: dev
Requires-Dist: pytest>=6.0; extra == "dev"
Requires-Dist: pytest-cov; extra == "dev"
Requires-Dist: black; extra == "dev"
Requires-Dist: flake8; extra == "dev"

# Dummy Package

A dummy Python package for testing CI workflows and release automation.

## Features

- Simple utility functions for demonstration
- Automatic version management with setuptools_scm
- Modern Python packaging with pyproject.toml

## Installation

```bash
pip install -e .
```

## Usage

```python
from vahidlari_dummypkg import greet, calculate_sum, format_message, get_package_info

# Greet someone
greet("Alice")

# Calculate sum
result = calculate_sum(2, 3)

# Format a message
formatted = format_message("Hello world")

# Get package info
info = get_package_info()
```

## Development

This package is designed for testing CI/CD workflows and is not intended for production use.
