From 8b958c577a7f5f484db42b7c26b0340e14fd9351 Mon Sep 17 00:00:00 2001 From: Shadab Zafar Date: Thu, 25 Jun 2015 23:40:59 +0530 Subject: Use setuptools if present The main reason for this is the presence of `develop` command in setuptools. So by running `sudo python setup.py develop` - ranger gets installed, but you can easily make changes to the code and won't have to reinstall it. You can read more about it here: http://pythonhosted.org//setuptools/setuptools.html#development-mode It basically links an egg, so I had to add an appropriate line to .gitignore as well. --- .gitignore | 1 + 1 file changed, 1 insertion(+) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index 5357ead2..09f1a7e6 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ *~ +*.egg-info *.pyc *.pyo stuff/* -- cgit 1.4.1-2-gfad0