This is the initial release of `regexable`, a more readable alternative to regular expressions in Python.
**Features:**
- Fluent interface for building regular expressions.
- Supports basic regex constructs like start/end of line, matching text, optional text, digits, whitespace, and more.
- Readable and chainable method calls to simplify the creation of complex regular expressions.
**Installation:**
bash
pip install regexable
**Usage Example:**
python
from regexable import Regexable
regex = Regexable().start_of_line().then("start").maybe("middle").end_of_line().build()
if regex.match("startmiddle"):
print("Matched!")