From 955597c269ec1d5b2c75b3ba2e075863529d2717 Mon Sep 17 00:00:00 2001 From: iLampard Date: Wed, 18 Oct 2023 10:26:53 +0800 Subject: [PATCH] Update setup.py --- setup.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index fffe1d9..019cdb9 100644 --- a/setup.py +++ b/setup.py @@ -49,8 +49,9 @@ def parse_require_file(fpath): version=get_version(), description='An easy and flexible tool for neural temporal point process', url = 'https://github.com/ant-research/EasyTemporalPointProcess/', - long_description=open('README.md').read(), - long_description_content_type='text/markdown', + long_description = 'Our EasyTPP makes several unique contributions to this area: a unified interface of using existing datasets and adding new datasets; a wide range of evaluation programs that are easy to use and extend as well as facilitate reproducible research; implementations of popular neural TPPs, together with a rich library of modules by composing which one could quickly build complex models. ', + # long_description=open('README.md').read(), + # long_description_content_type='text/markdown', author='Alipay', packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]), include_package_data=True,