mirror of
https://github.com/discountry/ritmex-bot.git
synced 2026-09-09 08:18:07 +00:00
10 lines
279 B
Python
10 lines
279 B
Python
from pathlib import Path
|
|
|
|
readme = Path("README.md").read_text()
|
|
changelog = Path("CHANGELOG.md").read_text()
|
|
|
|
combined = f"{readme}\n\n## Changelog\n\n{changelog}"
|
|
|
|
Path("README_PYPI.md").write_text(combined)
|
|
print("✅ Combined README.md and CHANGELOG.md into README_PYPI.md")
|