From 6db1b5f2afb26dc7372cdd714eb4189215a9c385 Mon Sep 17 00:00:00 2001 From: Eric Torres Date: Tue, 21 Dec 2021 00:29:20 -0800 Subject: [PATCH] Rename README.rst to README --- README | 7 +++++++ README.rst | 0 setup.py | 2 +- 3 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 README delete mode 100644 README.rst mode change 100644 => 100755 setup.py diff --git a/README b/README new file mode 100644 index 0000000..4cc432e --- /dev/null +++ b/README @@ -0,0 +1,7 @@ +Requirements +------------ + +* python >= 3.0 +* fd +* fzf +* python-termcolor diff --git a/README.rst b/README.rst deleted file mode 100644 index e69de29..0000000 diff --git a/setup.py b/setup.py old mode 100644 new mode 100755 index 935914a..1f6e6a5 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ SCRIPTS = ["bin/fedit", "bin/cptemplate", "bin/quickdel"] CMDCLASS = {"build_sphinx": BuildDoc} # ========== Functions ========== -with open("README.rst", "r") as fh: +with open("README", "r") as fh: long_description = fh.read() # ========== Package Setup ==========