()
| 4 | |
| 5 | # Reading the long description from README.md |
| 6 | def read_long_description(): |
| 7 | try: |
| 8 | return Path("README.md").read_text(encoding="utf-8") |
| 9 | except FileNotFoundError: |
| 10 | return "A description of LightRAG is currently unavailable." |
| 11 | |
| 12 | |
| 13 | # Retrieving metadata from __init__.py |