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"]}, )