forked from tommct/neuronpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·38 lines (37 loc) · 1.55 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
33
34
35
36
37
38
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
# import neuronpy.__init__ as neuronpy
setup(
name = 'neuronpy',
packages = find_packages()
# version = '0.1.6',
# author = 'Thomas McTavish',
# email = '[email protected]',
# license = 'MIT License',
# url = 'http://bitbucket.org/tommctavish/neuronpy/',
# docformat = 'restructuredtext',
# packages = ['neuronpy',
# 'neuronpy.graphics',
# 'neuronpy.math',
# 'neuronpy.nrnobjects',
# 'neuronpy.util'],
# url = neuronpy.__url__,
# license = neuronpy.__license__,
# author = neuronpy.__author__,
# author_email = neuronpy.__email__,
# description = 'Python interfaces and utilities for interacting with the NEURON simulator and analyzing neural data.',
# long_description = src.__doc__,
# keywords = 'neuron neural simulation simulator raster',
# platforms = 'any',
# classifiers = ['Development Status :: 3 - Alpha',
# 'Environment :: Console',
# 'Environment :: Web Environment',
# 'Intended Audience :: Science/Research',
# 'License :: Other/Proprietary License',
# 'Natural Language :: English',
# 'Operating System :: OS Independent',
# 'Programming Language :: Python',
# 'Topic :: Scientific/Engineering'],
#requires = ['NEURON Simulation Environment ( >= 7.1 )', 'matplotlib', 'numpy'],
)