-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #205 from schlegelp/dev
Update master to 2.0.0
- Loading branch information
Showing
112 changed files
with
4,146 additions
and
21,391 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: Publish Python 🐍 distributions 📦 to PyPI | ||
|
||
on: | ||
release: | ||
types: [created] | ||
|
||
jobs: | ||
build-n-publish: | ||
name: Build and publish Python 🐍 distributions 📦 to PyPI | ||
runs-on: ubuntu-18.04 | ||
steps: | ||
- uses: actions/checkout@master | ||
- name: Set up Python 3.7 | ||
uses: actions/setup-python@v1 | ||
with: | ||
python-version: 3.7 | ||
- name: Install wheel and setuptools | ||
run: >- | ||
python -m | ||
pip install | ||
wheel | ||
setuptools | ||
--user | ||
--upgrade | ||
- name: Build a binary wheel and a source tarball | ||
run: >- | ||
python3 | ||
setup.py | ||
sdist | ||
bdist_wheel | ||
- name: Publish distribution 📦 to PyPI | ||
uses: pypa/gh-action-pypi-publish@master | ||
with: | ||
password: ${{ secrets.pypi_password }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,18 @@ | ||
pymaid: neuron analysis toolbox | ||
=============================== | ||
pymaid: a Python-CATMAID interface | ||
================================== | ||
|
||
.. raw:: html | ||
|
||
<div class="container-fluid"> | ||
<div class="row"> | ||
<div class="col-lg-6"> | ||
|
||
Pymaid is a Python library for **visualisation** and **analysis** of **neuron data** | ||
generated with `CATMAID <http://catmaid.readthedocs.io/en/stable/>`_. It allows you to | ||
fetch, analyse and plot neuron morpholgy and connectivity from a CATMAID server. | ||
``pymaid`` (short for "Python-CATMAID") is a Python library for fetching, | ||
analyzing and visualisating data generated with | ||
`CATMAID <http://catmaid.readthedocs.io/en/stable/>`_. | ||
|
||
The package is stable but I recommend watching its | ||
`Github repository <https://github.com/schlegelp/PyMaid>`_ for updates. | ||
Make sure that your ``pymaid.__version__`` is up-to-date and check out the | ||
:ref:`release notes <whats_new>`. | ||
``pymaid`` is built on top of `navis <https://navis.readthedocs.io/en/latest/>`_ | ||
and is fully compatible with its functions. | ||
|
||
For a brief introduction to the library, you can read the | ||
:ref:`tutorial <tutorial>`. Visit the | ||
|
@@ -28,6 +26,10 @@ and bug reports are very welcome and best placed in | |
`issues <https://github.com/schlegelp/PyMaid/issues>`_. | ||
If you have any questions, please don't hesitate: [email protected] | ||
|
||
The package is stable but I recommend watching its | ||
`Github repository <https://github.com/schlegelp/PyMaid>`_ for updates. | ||
Make sure that your ``pymaid.__version__`` is up-to-date and check out the | ||
:ref:`release notes <whats_new>`. | ||
|
||
.. raw:: html | ||
|
||
|
@@ -62,14 +64,10 @@ If you have any questions, please don't hesitate: [email protected] | |
</div> | ||
<div class="panel-body"> | ||
|
||
* data fetching directly from CATMAID server | ||
* 2D (matplotlib) and 3D (vispy or plotly) plotting | ||
* virtual neuron surgery (cutting, stitching, pruning, rerooting) | ||
* R bindings (e.g. for libraries nat, nat.nblast and elmr) | ||
* interface with Blender 3D and Cytoscape | ||
* import/export from/to SWC | ||
* EM image data processing | ||
* data snapshots | ||
* fetch data directly from CATMAID server | ||
* write data (e.g. annotations, tags, neurons) to the server | ||
* fully compatible with `navis <https://navis.readthedocs.io/en/latest/>`_ | ||
* high-level functions to analyze e.g. connectivity | ||
|
||
.. raw:: html | ||
|
||
|
@@ -78,4 +76,3 @@ If you have any questions, please don't hesitate: [email protected] | |
</div> | ||
</div> | ||
</div> | ||
|
Oops, something went wrong.