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