Metadata-Version: 2.1
Name: my_prime_library
Version: 0.1
Summary: A Python library implementing the Sieve of Eratosthenes algorithm for prime number generation.
Description-Content-Type: text/markdown

# My Prime Library

My Prime Library is a Python library that provides an implementation of the Sieve of Eratosthenes algorithm for generating prime numbers.

## Installation

You can install the library using `pip`:

```bash
pip install my_prime_library

## Usage

```bash
from my_prime_library.sieve import sieve_of_eratosthenes

# Example usage
n = 30
primes = sieve_of_eratosthenes(n)
print(f"Primes up to {n}: {primes}")
```
