]> crepu.dev Git - config.git/blame - djavu-asus/elpa/elpy-20230803.1455/elpy/__init__.py
Configuracion en desarrollo PC pega
[config.git] / djavu-asus / elpa / elpy-20230803.1455 / elpy / __init__.py
CommitLineData
53e6db90
DC
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
23Elpy is a mode for Emacs to support writing Python code. This package
24provides the backend within Python to support auto-completion,
25documentation extraction, and navigation.
26
27Emacs will start the protocol by running the module itself, like so:
28
29 python -m elpy
30
31This will emit a greeting string on a single line, and then wait for
32the protocol to start. Details of the protocol can be found in
33elpy.rpc.
34
35This package is unlikely to be useful on its own.
36
37"""
38
39__author__ = "Jorgen Schaefer"
40__version__ = "1.35.0"
41__license__ = "GPL"