From 4d8fce13b5485c26f71f9c4bd856cc4dd7d29a3c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BF=AE=E6=98=8A?= Date: Wed, 4 Aug 2021 18:33:15 +0800 Subject: [PATCH] Update setup.py add long description meta to make pypi.org readme more clean. --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 4fa5074..48a771f 100644 --- a/setup.py +++ b/setup.py @@ -13,6 +13,7 @@ author_email="jbn@abreka.com", description="A tiny, subprocess-based tool for reading a MS Access database(.rdb) as a Pandas DataFrame.", long_description=open(README_FILE).read(), + long_description_meta="text/markdown", data_files=['README.md'], url="https://github.com/jbn/pandas_access" -) \ No newline at end of file +)