-
Notifications
You must be signed in to change notification settings - Fork 25
/
setup.py
35 lines (26 loc) · 1.13 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
# -*- coding: utf-8 -*-
#
#
#
"""
Install tvb-nest and tvb-scripts packages.
Execute:
python setup.py install/develop
"""
import shutil
import setuptools
VERSION = "2.1.0."
INSTALL_REQUIREMENTS = ["pandas", "xarray", "elephant", "pyspike", "dill", "ANNarchy", "neuron", "netpyne", "ray"]
setuptools.setup(name='tvb-multiscale',
version=VERSION,
packages=setuptools.find_packages(),
include_package_data=True,
install_requires=INSTALL_REQUIREMENTS,
description='A package for multiscale co-simulations with TVB and NEST, ANNarchy and NETPYNE (NEURON).',
license="GPL v3",
author="Dionysios Perdikis, André Blickensdörfer, Valeryi Bragin, Lia Domide, TVB Team",
author_email='tvb.admin@thevirtualbrain.org',
url='http://www.thevirtualbrain.org',
download_url='https://github.com/the-virtual-brain/tvb-multiscale',
keywords='tvb brain simulator nest neuroscience human animal neuronal dynamics builders delay')
shutil.rmtree('tvb_multiscale.egg-info', True)