Metadata-Version: 2.0
Name: hackedit-python
Version: 1.0a1
Summary: A set of plugins that add Python support to HackEdit
Home-page: https://github.com/HackEdit/hackedit-python
Author: Colin Duquesnoy
Author-email: colin.duquesnoy@gmail.com
License: GPL
Keywords: IDE,Intergrated Development Environment,TextEditor,Editor
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: X11 Applications :: Qt
Classifier: Environment :: Win32 (MS Windows)
Classifier: Environment :: MacOS X
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: License :: OSI Approved :: GNU General Public License v2 (GPLv2)
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Software Development
Classifier: Topic :: Text Editors :: Integrated Development Environments (IDE)
Requires-Dist: docutils

hackedit-python
===============

A set of plugins that add Python support to `HackEdit`_.

Features:
---------

- ability to run scripts (or the selected text of an editor) and manage
  project run configuration
- `pyqode.python`_ integration:

  - syntax highlighting
  - code completion (based on the `jedi`_ code completion engine)
  - pep8 + pyflakes on the fly analysis
  - smart indentation
  - go to definition
  - call tips
  - documentation viewer
- IPython integration (jupyter not supported yet)
- refactoring (with `rope`_)
- package manager interface
- support for virtualenv and custom intepreters


Requirements
------------

The following packages are needed:

- `hackedit`_
- `docutils`_

The following packages are optional dependencies:

- `ipython`_ (== 3.2.1, jupyter not supported yet)
- `pyzmq`_


The following packages are included in a zip archive:

- `rope`_
- `virtualenv`_


Installation
------------

::

    pip3 install hackedit-python --upgrade

.. _HackEdit: https://github.com/HackEdit/hackedit
.. _docutils: https://pypi.python.org/pypi/docutils
.. _ipython: https://pypi.python.org/pypi/IPython
.. _pyzmq: https://pypi.python.org/pypi/pyzmq
.. _rope: https://pypi.python.org/pypi/rope_py3k
.. _virtualenv: https://pypi.python.org/pypi/virtualenv
.. _pyqode.python: https://github.com/pyQode/pyqode.python
.. _jedi: https://pypi.python.org/pypi/jedi


