Klimi's new dotfiles with stow.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
1.4 KiB

4 years ago
  1. # Elpy, the Emacs Lisp Python Environment
  2. # Copyright (C) 2013-2016 Jorgen Schaefer
  3. # Author: Jorgen Schaefer <contact@jorgenschaefer.de>
  4. # URL: http://github.com/jorgenschaefer/elpy
  5. # This program is free software; you can redistribute it and/or
  6. # modify it under the terms of the GNU General Public License
  7. # as published by the Free Software Foundation; either version 3
  8. # of the License, or (at your option) any later version.
  9. # This program is distributed in the hope that it will be useful,
  10. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. # GNU General Public License for more details.
  13. # You should have received a copy of the GNU General Public License
  14. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  15. """The Emacs Lisp Python Environment.
  16. Elpy is a mode for Emacs to support writing Python code. This package
  17. provides the backend within Python to support auto-completion,
  18. documentation extraction, and navigation.
  19. Emacs will start the protocol by running the module itself, like so:
  20. python -m elpy
  21. This will emit a greeting string on a single line, and then wait for
  22. the protocol to start. Details of the protocol can be found in
  23. elpy.rpc.
  24. This package is unlikely to be useful on its own.
  25. """
  26. __author__ = "Jorgen Schaefer"
  27. __version__ = "1.30.0"
  28. __license__ = "GPL"