Emacs Python Development Environment
Emacs Lisp Python Shell
Permalink
Failed to load latest commit information.
docs Bump version: 1.16.1 → 1.17.0 Oct 29, 2017
elpy Bump version: 1.16.1 → 1.17.0 Oct 29, 2017
scripts Add elpy-refactor to release script May 13, 2017
snippets/python-mode Return correct form of "super" depending on Python version Jan 20, 2016
test Make tests pass Sep 29, 2017
.bumpversion.cfg Bump version: 1.16.1 → 1.17.0 Oct 29, 2017
.coveragerc Add coveralls badge. Jun 26, 2014
.gitignore Added yapf as another formatter Nov 6, 2015
.travis.yml Require Emacs 24.4 and revert compatibility changes for Emacs 24.3 Oct 29, 2017
CONTRIBUTING.rst Switch URLs to readthedocs.io Apr 28, 2016
Cask Bump version: 1.16.1 → 1.17.0 Oct 29, 2017
LICENSE Add LICENSE file. Jan 28, 2013
MANIFEST.in Fix MANIFEST.in Sep 20, 2013
NEWS.rst Update NEWS.rst for Elpy 1.17 Oct 29, 2017
README.rst Add patreon link Jun 13, 2017
RELEASE.txt Remove release branch from RELEASE.txt, not needed anymore Oct 28, 2016
elpy-django.el Fix compilation warnings Dec 27, 2016
elpy-pkg.el Merge pull request #1185 from rgemulla/master Oct 29, 2017
elpy-profile.el Add commands to profile python buffers Feb 27, 2017
elpy-refactor.el Update copyright lines. Jan 31, 2016
elpy-shell.el elpy-shell: Fix bug when eval-sexp-fu package not installed (#1206) Nov 3, 2017
elpy.el Extend the list of files ignored by elpy-find-file Nov 3, 2017
requirements-dev.txt Bump dependency versions Sep 22, 2017
requirements.txt Bump dependency versions Sep 22, 2017
requirements3.txt Bump dependency versions Sep 22, 2017
setup.cfg Fix MANIFEST.in Sep 20, 2013
setup.py Update setup.py Jul 24, 2015

README.rst

Elpy, the Emacs Lisp Python Environment

Elpy is an Emacs package to bring powerful Python editing to Emacs. It combines and configures a number of other packages, both written in Emacs Lisp as well as Python.

https://secure.travis-ci.org/jorgenschaefer/elpy.png?branch=master https://coveralls.io/repos/jorgenschaefer/elpy/badge.png?branch=master

Documentation

Elpy is fully documented at readthedocs.io:

https://elpy.readthedocs.io/en/latest/index.html

Quick Installation

First, install the required Python packages::

# Either of these
pip install rope
pip install jedi
# flake8 for code checks
pip install flake8
# importmagic for automatic imports
pip install importmagic
# and autopep8 for automatic PEP8 formatting
pip install autopep8
# and yapf for code formatting
pip install yapf

One-line install: pip install jedi flake8 importmagic autopep8

Evaluate this in your *scratch* buffer:

(require 'package)
(add-to-list 'package-archives
             '("elpy" . "https://jorgenschaefer.github.io/packages/"))

Then run M-x package-refresh-contents to load the contents of the new repository, and M-x package-install RET elpy RET to install elpy.

Finally, add the following to your .emacs:

(package-initialize)
(elpy-enable)

Done.

Contact

For questions regarding Elpy, do not hesitate to open an issue on github or visit us on IRC, channel #emacs-elpy on irc.freenode.net.

License

This project is free software: You can redistribute it and/or modify it under the terms of the GNU General Public License, either version 3 of the License, or (at your option) any later version.

Thank You

If you would like to support this work, you can become a patreon:

https://www.patreon.com/jorgenschaefer

Please note that this is completely voluntary, and does not make you more important than others when it comes to issues, feature requests or anything. I appreciate donations, but do not feel compelled to spend money, and do not feel bad if you don't.