()
| 24 | |
| 25 | # Read long description from README |
| 26 | def get_long_description(): |
| 27 | readme_file = Path(__file__).parent / "README.md" |
| 28 | if readme_file.exists(): |
| 29 | with open(readme_file, "r", encoding="utf-8") as f: |
| 30 | return f.read() |
| 31 | return "" |
| 32 | |
| 33 | |
| 34 | # Default compile flags: safe baseline with optimization |