Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
language: python
sudo: false
deploy:
provider: pypi
user: arokem
password:
secure: AB7BnrkNOTQWXUNiaShedbIEBay+5JbulAxUHY4vEMdiI68bPLYOrIDxuT/lIfWrrgXUuicbJcWUxt6zpdUEQrEfYB6pNhrosZv4+R5HZu1FHY7EfOfsyHxb2wnezKuIEVXdevAmIg5rYNeTPcdl/CFm4xQGfdc4a3eyT5cJT58=
on:
tags: true
repo: arokem/python-matlab-bridge
# until this is fixed: https://github.com/travis-ci/travis-ci/issues/1675
all_branches: true
script:
- true
17 changes: 13 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,21 @@ Matlab code together (requires ipython > 0.13).

## Installation

Pymatbridge communicates with Matlab using zeromq. So before installing
`pymatbridge` can be installed from [PyPI][1]:

```
$ pip install pymatbridge # sudo may be needed
```

`pymatbridge` communicates with Matlab using zeromq. So before installing
pymatbridge you must have [zmq](http://zeromq.org/intro:get-the-software)
library and [pyzmq](http://zeromq.org/bindings:python) installed on your
machine. If you intend to use the Matlab magic extension, you'll also need
[IPython](http://ipython.org/install.html). To make pymatbridge work properly,
please follow the following steps.
[IPython](http://ipython.org/install.html). Note that IPython notebooks
also depend on `pyzmq` so if you have IPython notebooks installed, you likely
have `pyzmq` already.

To make pymatbridge work properly, please follow the following steps.

### Install zmq library
Please refer to the [official guide](http://zeromq.org/intro:get-the-software) on how to
Expand Down Expand Up @@ -207,4 +216,4 @@ Python communicates with Matlab via an ad-hoc zmq messenger. This is inherently
insecure, as the Matlab instance may be directed to perform arbitrary system
calls. There is no sandboxing of any kind. Use this code at your own risk.


[1]: https://pypi.python.org/pypi/pymatbridge