Skip to content

Commit

Permalink
update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
schlegelp committed Jan 6, 2021
1 parent 17b33e2 commit d0c8d80
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,21 +16,21 @@
requirements = [l for l in requirements if l and not l.startswith('#')]

LONG_DESCRIPTION = """
NAVis library is a Python 3 library for analysis and visualization of neuron
NAVis is a Python 3 library for analysis and visualization of neuron
morphology.
Features include:
* work with various neuron types: skeletons, meshes, dotprops
* 2D (matplotlib) and 3D (vispy or plotly) plotting
* virtual neuron surgery (cutting, stitching, pruning, rerooting, ...)
* analyse morphology (e.g. NBLAST) and connectivity
* virtual neuron surgery: cutting, stitching, pruning, rerooting, etc
* analyze morphology (e.g. NBLAST) and connectivity
* transform neurons between template brains
* Python bindings for R neuron libraries (e.g. nat, nat.nblast and elmr)
* load neurons directly from `neuromorpho.org <http://neuromorpho.org>`_ or :ref:`neuPrint<neuprint_intro>`
* load neurons directly from `neuPrint <https://neuprint.janelia.org>`_ and `neuromorpho.org <http://neuromorpho.org>`_
* interface with Blender 3D
* interface with R neuron libraries (e.g. nat, nat.nblast and elmr)
* import-export from/to SWC
* extensible - see for example `pymaid <https://pymaid.readthedocs.io/en/latest/>`_
* designed to be extensible - see for example `pymaid <https://pymaid.readthedocs.io/en/latest/>`_
Check out the `Documentation <http://navis.readthedocs.io/>`_.
"""
Expand All @@ -40,14 +40,14 @@
version=verstr,
packages=find_packages(),
license='GNU GPL V3',
description='Neuron Analysis and Visualization Library',
description='Neuron Analysis and Visualization library',
long_description=LONG_DESCRIPTION,
url='http://navis.readthedocs.io',
author='Philipp Schlegel',
author_email='pms70@cam.ac.uk',
keywords='Neuron Analysis Visualization Anatomy Connectivity',
keywords='Neuron Analysis Visualization Anatomy Connectivity Transform',
classifiers=[
'Development Status :: 3 - Alpha',
'Development Status :: 4 - Beta',

'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
Expand All @@ -57,6 +57,8 @@
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
install_requires=requirements,
extras_require={'extras': []},
Expand Down

0 comments on commit d0c8d80

Please sign in to comment.