-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
41 lines (32 loc) · 1.32 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
39
40
41
# -*- coding: utf-8 -*-
#
#
#
"""
Install TVB Head package for developers.
Execute:
python setup.py install/develop
"""
import shutil
import setuptools
VERSION = "1.0.0"
INSTALL_REQUIREMENTS = ["pandas", "xarray"]
setuptools.setup(name='tvb-scripts',
version=VERSION,
packages=setuptools.find_packages(),
include_package_data=True,
install_requires=INSTALL_REQUIREMENTS,
description='A package with helper functions, '
'some additional datatypes, '
'plotting functions, '
'a TimeSeries model and service, '
'io module to and from TVB and h5 files'
'and a datatypes model and services for TVB Structural data, '
'for more efficient TVB scripting.',
license="GPL v3",
author="TVB Team",
author_email='[email protected]',
url='http://www.thevirtualbrain.org',
# download_url='https://github.com/the-virtual-brain/tvb-scripts',
keywords='tvb brain simulator neuroscience human animal neuronal dynamics models delay data')
shutil.rmtree('tvb_scripts.egg-info', True)