X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/9ef8e6c9b0090d787953bcd3c46a8942483fcc6b..d29303c9884e1ef715851d69acc5d54f84441720:/setup.py diff --git a/setup.py b/setup.py index f0b727c..fb3b91f 100644 --- a/setup.py +++ b/setup.py @@ -11,9 +11,11 @@ sys.path.insert(0, str(CURRENT_DIR)) # for setuptools.build_meta def get_long_description() -> str: - readme_md = CURRENT_DIR / "README.md" - with open(readme_md, encoding="utf8") as ld_file: - return ld_file.read() + return ( + (CURRENT_DIR / "README.md").read_text(encoding="utf8") + + "\n\n" + + (CURRENT_DIR / "CHANGES.md").read_text(encoding="utf8") + ) USE_MYPYC = False