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/bin/cptemplate b/bin/cptemplate old mode 100755 new mode 100644 diff --git a/bin/fedit b/bin/fedit old mode 100755 new mode 100644 diff --git a/bin/quickdel b/bin/quickdel old mode 100755 new mode 100644 diff --git a/file-scripts.rb b/file-scripts.rb index e564705..e3f1533 100644 --- a/file-scripts.rb +++ b/file-scripts.rb @@ -1,10 +1,10 @@ class HelperScripts < Formula desc "Various scripts for performing file-related operations such as editing and deleting" - homepage "https://github.com/etorres4/helper-scripts" + homepage "https://github.com/etorres4/file-scripts" url "https://github.com/etorres4/file-scripts", :using => :git sha256 "7b6c3f363e3b34787765b5975d87f861a19eeda278612cbf8c5176e3e2732cd9" - version "0.9" + version "0.9.1" # No build dependencies bottle :unneeded diff --git a/file_scripts/__init__.py b/file_scripts/__init__.py old mode 100644 new mode 100755 diff --git a/file_scripts/editor.py b/file_scripts/editor.py old mode 100644 new mode 100755 diff --git a/file_scripts/error.py b/file_scripts/error.py old mode 100644 new mode 100755 diff --git a/file_scripts/fzf.py b/file_scripts/fzf.py old mode 100644 new mode 100755 diff --git a/file_scripts/search.py b/file_scripts/search.py old mode 100644 new mode 100755 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 ========== diff --git a/tests/__init__.py b/tests/__init__.py old mode 100644 new mode 100755 diff --git a/tests/test_editor.py b/tests/test_editor.py old mode 100644 new mode 100755 diff --git a/tests/test_fzf.py b/tests/test_fzf.py old mode 100644 new mode 100755 diff --git a/tests/test_search.py b/tests/test_search.py old mode 100644 new mode 100755