Metadata-Version: 2.1
Name: eric-ide-server
Version: 24.7
Summary: eric7_server is the server part of the eric7 IDE.
Author: Detlev Offenbach
Author-email: Detlev Offenbach <detlev@die-offenbachs.de>
Maintainer: Detlev Offenbach
Maintainer-email: Detlev Offenbach <detlev@die-offenbachs.de>
License: GPLv3
Project-URL: Homepage, https://eric-ide.python-projects.org
Project-URL: Donation, https://www.paypal.com/donate/?hosted_button_id=XG3RSPKE3YAJ2
Project-URL: Issues Tracker, https://tracker.die-offenbachs.homelinux.org/
Project-URL: Source Code, https://hg.die-offenbachs.homelinux.org/eric/
Project-URL: Download, https://sourceforge.net/projects/eric-ide/files/latest/download
Project-URL: Mailing List, https://www.riverbankcomputing.com/mailman/listinfo/eric
Project-URL: News, https://eric-ide.python-projects.org/eric-news.html
Keywords: Development,eric-ide,IDE,Python3
Platform: FreeBSD
Platform: Linux
Platform: macOS
Platform: Windows
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Environment :: MacOS X
Classifier: Environment :: Win32 (MS Windows)
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: End Users/Desktop
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows :: Windows 10
Classifier: Operating System :: Microsoft :: Windows :: Windows 11
Classifier: Operating System :: POSIX :: BSD
Classifier: Operating System :: POSIX :: BSD :: FreeBSD
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Debuggers
Classifier: Topic :: Text Editors :: Integrated Development Environments (IDE)
Requires-Python: <3.13,>=3.8
Description-Content-Type: text/markdown
Requires-Dist: pip>=21.1
Requires-Dist: EditorConfig
Requires-Dist: coverage>=6.5.0

# README for the eric-ide Server

## 0. What is eric-ide-server?
eric-ide-server is an extension for the eric7 IDE. It allows remote editing
and debugging of Python scripts and projects. By having the eric7_server
script installed and running on a remote computer the eric7 IDE will be able
to connect to it for loading and saving files and run a debug session. This
works for simple (single) scripts as well as complete eric-ide projects.
For more details see
[https://eric-ide.python-projects.org](https://eric-ide.python-projects.org)

## 1. Installation
Installing eric7_server is a simple process. It is recommended to run the
server in its own Python virtual environment in order to not mess with your
system. Installation should be done using the package provided via PyPI. The
steps are shown below.

### 1.1 Create a Python virtual environment for eric7_server
In order to create that environment execute the following command in a terminal
window.

__Linux, macOS__

    python3 -m venv eric7_server_venv

__Windows__

    python.exe -m venv eric7_server_venv

Replace `eric7_server_venv` with the desired path to the directory for the virtual
environment. All further instructions will assume this environment name.

### 1.2 Installation via the Python Package Index PyPI

Enter the following command in a terminal window.

__Linux, macOS__

    ~/eric7_server_venv/bin/python3 -m pip install --upgrade --prefer-binary eric-ide-server

__Windows__

    eric7_server_venv\Scripts\python.exe -m pip install --upgrade --prefer-binary eric-ide-server

## 2. Usage
In order to use the eric-ide server on a remote host just login to this host (preferable
via ssh) and start the server. When serving files via the eric-ide server file dialog,
the current directory (i.e. the one the server was started in) will be shown first. Some
aspects of the server may be changes via command line switches. The supported switches
are

- -h, --help  
    Show some help message giving the supported switches and exit.
- -p PORT, --port PORT  
    Listen on the given port for connections from an eric IDE (default 42024).
- -6, --with-ipv6  
    Listen on IPv6 interfaces as well if the system supports the creation of TCP
    sockets which can handle both IPv4 and IPv6.
- -V, --version  
    Show version information and exit.

## 3. License
eric7 (and the eric7 tools) is released under the conditions of the GPLv3. See 
separate license file `LICENSE.GPL3` for more details. Third party software
included in eric7 is released under their respective license and contained in
the eric7 distribution for convenience. 

## 4. Bugs and other reports
Please send bug reports, feature requests or contributions to eric bugs
address. Just send an email to
[eric-bugs@eric-ide.python-projects.org](mailto:eric-bugs@eric-ide.python-projects.org).
To request a new feature send an email to
[eric-featurerequest@eric-ide.python-projects.org](mailto:eric-featurerequest@eric-ide.python-projects.org).

Alternatively bugs may be reported or features requested via the eric7 issue tracker
at 
[https://tracker.die-offenbachs.homelinux.org/](https://tracker.die-offenbachs.homelinux.org/).
