From 513868de21a1c495f700bf16f3c9613120be8731 Mon Sep 17 00:00:00 2001 From: Jinzhe Zeng Date: Thu, 11 Aug 2022 22:05:54 -0400 Subject: [PATCH] generate author list from git (#1854) So credits will keep up-to-date. No one's contribution will be forgot. For detailed implementation, see also https://github.com/deepmodeling/deepmodeling_sphinx/pull/18. --- doc/credits.rst | 37 ++----------------------------------- setup.py | 15 ++++++++++++++- 2 files changed, 16 insertions(+), 36 deletions(-) diff --git a/doc/credits.rst b/doc/credits.rst index 0297345399..d735a4ecf2 100644 --- a/doc/credits.rst +++ b/doc/credits.rst @@ -5,44 +5,11 @@ Authors and Credits Package Contributors ========================= -* AnguseZhang -* baohan -* bwang-ecnu -* denghuilu -* frankhan91 -* GeiduanLiu -* gzq942560379 -* Han Wang -* haidi-ustc -* hlyang1992 -* hsulab -* iProzd -* Jiequn Han -* JiabinYang -* jxxiaoshaoye -* Linfeng Zhang -* marian-code -* njzjz -* Nick Lin -* pkulzy -* Shaochen Shi -* tuoping -* wsyxbcl -* Xia, Yu -* Ye Ding -* Yingze Wang -* Yixiao Chen -* YWolfeee -* Zhanlue Yang -* zhouwei25 -* ZiyaoLi +.. git-shortlog-authors:: + Other Credits ============= * Zhang ZiXuan for designing the Deepmodeling logo. * Everyone on the `Deepmodeling mailing list` for contributing to many discussions and decisions! - -(If you have contributed to the ``deepmd-kit`` core package and your name is missing, -please send an email to the contributors, or -open a pull request in the `deepmd-kit repository `_) diff --git a/setup.py b/setup.py index ef617857c3..bebf8130d5 100644 --- a/setup.py +++ b/setup.py @@ -141,7 +141,20 @@ cmake_minimum_required_version="3.0", extras_require={ "test": ["dpdata>=0.1.9", "ase", "pytest", "pytest-cov", "pytest-sugar"], - "docs": ["sphinx>=3.1.1", "recommonmark", "sphinx_rtd_theme>=1.0.0rc1", "sphinx_markdown_tables", "myst-parser", "breathe", "exhale", "numpydoc", "ase", "deepmodeling-sphinx", "dargs>=0.3.1", "sphinx-argparse"], + "docs": [ + "sphinx>=3.1.1", + "recommonmark", + "sphinx_rtd_theme>=1.0.0rc1", + "sphinx_markdown_tables", + "myst-parser", + "breathe", + "exhale", + "numpydoc", + "ase", + "deepmodeling-sphinx>=0.1.0", + "dargs>=0.3.1", + "sphinx-argparse", + ], **extras_require, }, entry_points={"console_scripts": ["dp = deepmd.entrypoints.main:main"]},