]>
crepu.dev Git - config.git/blob - djavu-asus/elpa/elpy-20230803.1455/elpy/__init__.py
1 # Elpy, the Emacs Lisp Python Environment
3 # Copyright (C) 2013-2019 Jorgen Schaefer
5 # Author: Jorgen Schaefer <contact@jorgenschaefer.de>
6 # URL: http://github.com/jorgenschaefer/elpy
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.
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.
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/>.
21 """The Emacs Lisp Python Environment.
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.
27 Emacs will start the protocol by running the module itself, like so:
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
35 This package is unlikely to be useful on its own.
39 __author__
= "Jorgen Schaefer"
40 __version__
= "1.35.0"