-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
32 lines (31 loc) · 1.02 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
from setuptools import setup, find_packages
setup(
name="neuron_ui",
version="0.0.1",
url="https://github.com/MetaCell/NEURON-UI",
author="MetaCell",
author_email="[email protected]",
description="User interface for NEURON based on web technologies and Jupyter",
license="MIT",
long_description=open('README.rst').read(),
packages=find_packages(),
package_data={
'': ['*.hoc']
},
scripts=['NEURON-UI'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Visualization',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4'
],
install_requires=[
'jupyter_geppetto==0.3.4'
],
)