From 11c3c2aef5cd75170d37c985dfe9f09d52b63a8f Mon Sep 17 00:00:00 2001 From: CharlesPikachu <1159254961@qq.com> Date: Wed, 20 Jul 2022 22:44:05 +0800 Subject: [PATCH] update docs --- README.md | 1 + docs/Recommend.md | 2 ++ docs/requirements.txt | 4 ++-- setup.py | 2 +- 4 files changed, 6 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index eef05f6..55fb970 100644 --- a/README.md +++ b/README.md @@ -118,6 +118,7 @@ game_client.execute(random.choice(list(all_supports.values()))) - [DataAnalysis](https://github.com/CharlesPikachu/dataanalysis): Some data analysis projects in charles_pikachu. - [Imagedl](https://github.com/CharlesPikachu/imagedl): Search and download images from specific websites. - [Pytoydl](https://github.com/CharlesPikachu/pytoydl): A toy deep learning framework built upon numpy. +- [NovelDL](https://github.com/CharlesPikachu/noveldl): Search and download novels from some specific websites. # Citation diff --git a/docs/Recommend.md b/docs/Recommend.md index f6ac33d..f18183d 100644 --- a/docs/Recommend.md +++ b/docs/Recommend.md @@ -35,3 +35,5 @@ - [图片下载器](https://github.com/CharlesPikachu/imagedl) - [从零开始实现一个深度学习框架](https://github.com/CharlesPikachu/pytoydl) + +- [小说下载器](https://github.com/CharlesPikachu/noveldl) diff --git a/docs/requirements.txt b/docs/requirements.txt index bbb1cb7..842ac88 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt @@ -1,4 +1,4 @@ recommonmark -sphinx -sphinx_markdown_tables +sphinx==4.5.0 +sphinx_markdown_tables==0.0.12 sphinx_rtd_theme \ No newline at end of file diff --git a/setup.py b/setup.py index 042a945..0646182 100644 --- a/setup.py +++ b/setup.py @@ -72,7 +72,7 @@ license=cpgames.__license__, include_package_data=True, package_data=package_data, - install_requires=list(open('requirements.txt', 'r').readlines()), + install_requires=[lab.strip('\n') for lab in list(open('requirements.txt', 'r').readlines())], zip_safe=True, packages=find_packages(), ) \ No newline at end of file