el-get/recipes/traad.rcp
Takafumi Arakaki 2f74ac4aa1 Add el-get-envpath-prepend util function
el-get-envpath-prepend is added in order to simplify settings
related to python-related recipes, including newly added traad.rcp.
This function is general enough to use to modify, for example,
the $PATH environment variable.
2012-07-24 12:24:05 +02:00

13 lines
468 B
Plaintext

(:name traad
:description "A XMLRPC server for the rope Python refactoring library"
:type github
:pkgname "abingham/traad"
:load-path ("elisp")
:prepare
(progn
;; do PYTHONPATH=~/.emacs.d/el-get/traad/:$PYTHONPATH
(el-get-envpath-prepend "PYTHONPATH" default-directory)
(setq traad-server-program '("python" "-m" "traad.server"))
(autoload 'traad-open "traad" nil t))
:depends rope)