-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
21 lines (20 loc) · 972 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name='neuromorpho',
version='0.0.3',
scripts=['neuromorpho'] ,
author="Stephan Grein",
author_email="[email protected]",
description="Query NeuroMorpho.org database via REST",
long_description="This PyPi project allows users to query the NeuroMorpho.org database via REST request conveniently from the command line with Python2 or Python3 and integrates thus readily into a batch workflow. Database can be queried for cell names and neurons are downloaded in the SWC format.",
long_description_content_type="text/markdown",
url="https://github.com/NeuroBox3D/neuromorpho",
packages=setuptools.find_packages(exclude=['tests']),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)