#!python
"""
Effortless file encryption for your git repos—pattern-matched, secure, and keyfile-flexible.
A Python CLI tool providing file encryption with .gitattributes-style pattern matching and both symmetric and GPG-encrypted keyfile modes.
"""

import sys
from pathlib import Path

# Add the git_safe package to the path
sys.path.insert(0, str(Path(__file__).parent))

from git_safe.cli import main

if __name__ == '__main__':
    sys.exit(main())