forked from the-virtual-brain/tvb-multiscale
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (26 loc) · 1011 Bytes
/
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 = "1.0.2"
INSTALL_REQUIREMENTS = ["pandas", "xarray", "elephant"]
setuptools.setup(name='tvb-nest',
version=VERSION,
packages=setuptools.find_packages(),
include_package_data=True,
install_requires=INSTALL_REQUIREMENTS,
description='A package for multiscale simulations with TVB and NEST.',
license="GPL v3",
author="Dionysios Perdikis, Lia Domide, TVB Team",
author_email='[email protected]',
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_nest.egg-info', True)