From 5077bf87296d4f423bb616ec454eb135fc10e953 Mon Sep 17 00:00:00 2001 From: Yuting Ning <48355377+nnnyt@users.noreply.github.com> Date: Mon, 22 Jan 2024 13:03:04 +0800 Subject: [PATCH] Update setup.py --- setup.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index a887856..663f390 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ setup( name='CAT', version='0.0.1', - author='nnnyt', + author='Yuting Ning', author_email='ningyt@mail.ustc.edu.cn', packages=find_packages(), url='https://github.com/bigdata-ustc/CAT', @@ -18,5 +18,6 @@ }, classifiers=[ "Programming Language :: Python :: 3", - ] -) \ No newline at end of file + ], + long_description=open('README.md').read() +)