Metadata-Version: 2.4
Name: somemini
Version: 0.1.0
Summary: A simple Python library which make python and development more easy
Author: Abrar
License: MIT
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# some

A simple Python library for creating subscriptions with a price, duration, and automatic expiration date.

## Installation

```bash
pip install some
```

## Quick Start

```python
from some import subscription

user = subscription(
    price=20,
    duration=30
)

print(user.price)
print(user.duration)
print(user.created_at)
print(user.expires)
```

## What It Does

`some` automatically:

* stores the subscription price
* stores the subscription duration
* records the creation date
* calculates the expiration date

## Example

A 30-day subscription created on August 17, 2026 will automatically expire on September 16, 2026.

## Requirements

Python 3.9+

## License

MIT
