Metadata-Version: 2.4
Name: expotower
Version: 0.1.0
Summary: A simple library for computing exponential towers
Author-email: YourName <you@example.com>
License: MIT
Keywords: math,exponentiation,power tower,tetration
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Scientific/Engineering :: Mathematics
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Dynamic: license-file

# Expotower

A tiny Python library for evaluating exponential towers.

## Example

```python
from expotower import expotower, log10_estimate, repeat

print(expotower(10, 20))             # 10^20
print(log10_estimate(10, 20, 30))    # ≈ log10 of result
print(repeat(10, 3))                 # 10^(10^10)
