Browse Source

Merge pull request #182 from jheiselman/win_pepper_cmd

Add a basic python.cmd so users can run pepper from cmd.exe easily
Daniel Wallace 5 years ago
parent
commit
386c08c646
2 changed files with 6 additions and 1 deletions
  1. 1 1
      README.rst
  2. 5 0
      scripts/pepper.cmd

+ 1 - 1
README.rst

@@ -41,7 +41,7 @@ Installation
 Usage
 -----
 
-Basic usage is in heavy flux.
+Basic usage is in heavy flux. You can run pepper using the script in %PYTHONHOME%/scripts/pepper (a pepper.cmd wrapper is provided for convenience to Windows users).
 
 .. code-block:: bash
 

+ 5 - 0
scripts/pepper.cmd

@@ -0,0 +1,5 @@
+@echo off
+set _SCRIPTDIR=%~d0
+set _SCRIPTPATH=%~p0
+
+python "%_SCRIPTDIR%%_SCRIPTPATH%pepper" %*