Metadata-Version: 2.1
Name: Toshikikuwae
Version: 0.1.0
Summary: A simple math library
Author: Your Name
Author-email: you@example.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# mymathlib

A simple math library with addition and subtraction.

## Installation


## Usage

```python
from mymathlib import add, subtract

print(add(2, 3))       # => 5
print(subtract(5, 2))  # => 3


---

## ✅ ステップ5：ライセンスを書く（例：MIT）

### 🔹 `LICENSE`

```text
MIT License

Copyright (c) 2025 Your Name

Permission is hereby granted, free of charge, to any person obtaining a copy...
