From eef575ad71eb7e705d7a6f2a143761a4d96444ce Mon Sep 17 00:00:00 2001 From: Jinzhe Zeng Date: Sat, 13 Aug 2022 16:39:12 -0400 Subject: [PATCH] docs: add authors section for credits --- docs/credits.rst | 4 ++++ docs/index.rst | 1 + setup.py | 10 +++++++++- 3 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 docs/credits.rst diff --git a/docs/credits.rst b/docs/credits.rst new file mode 100644 index 000000000..a72b83e5a --- /dev/null +++ b/docs/credits.rst @@ -0,0 +1,4 @@ +Authors +======= + +.. git-shortlog-authors:: \ No newline at end of file diff --git a/docs/index.rst b/docs/index.rst index 64d9183af..e4b34f1db 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -13,6 +13,7 @@ Welcome to dpdata's documentation! cli formats api/api + credits .. mdinclude:: ../README.md diff --git a/setup.py b/setup.py index d04124ab5..4407c625d 100644 --- a/setup.py +++ b/setup.py @@ -54,7 +54,15 @@ 'ase': ['ase'], 'amber': ['parmed'], 'pymatgen': ['pymatgen'], - 'docs': ['sphinx', 'recommonmark', 'sphinx_rtd_theme>=1.0.0rc1', 'numpydoc', 'm2r2', 'deepmodeling-sphinx', 'sphinx-argparse'], + 'docs': [ + 'sphinx', + 'recommonmark', + 'sphinx_rtd_theme>=1.0.0rc1', + 'numpydoc', + 'm2r2', + 'deepmodeling-sphinx>=0.1.1', + 'sphinx-argparse', + ], }, entry_points={"console_scripts": ["dpdata = dpdata.cli:dpdata_cli"]}, )