X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/9ef8e6c9b0090d787953bcd3c46a8942483fcc6b..1382eabb3f27d7c9cd5328fb7fddd1ded98121fb:/setup.py?ds=sidebyside diff --git a/setup.py b/setup.py index f0b727c..6192131 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 @@ -76,7 +78,6 @@ setup( "mypy_extensions>=0.4.3", ], extras_require={"d": ["aiohttp>=3.3.2", "aiohttp-cors"]}, - test_suite="tests.test_black", classifiers=[ "Development Status :: 4 - Beta", "Environment :: Console",