Metadata-Version: 2.1
Name: sygnew
Version: 0.1.0
Summary: A sample Python package for PyPI submission
Author-email: Your Name <your.email@example.com>
License: MIT
Project-URL: Homepage, https://github.com/yourusername/my_package
Project-URL: Repository, https://github.com/yourusername/my_package
Project-URL: Issues, https://github.com/yourusername/my_package/issues
Keywords: sample,package,template
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
Classifier: Programming Language :: Python :: 3.12
Description-Content-Type: text/markdown
Provides-Extra: dev
License-File: LICENSE

# sygnew

A sample Python package for PyPI submission.

## Installation

```bash
pip install sygnew_example
```

## Usage

```python
from sygnew import say_hello, greet

print(say_hello("Alice"))  # Hello, Alice!
print(greet("Bob"))        # Hi Bob, welcome to sygnew!
```

## Development

```bash
# Install in development mode
pip install -e ".[dev]"

# Run tests
pytest

# Format code
black .
```
