-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
51 lines (48 loc) · 1.83 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
42
43
44
45
46
47
48
49
50
51
#! /usr/bin/env python
'''
brian2tools setup script
'''
import os
import sys
from setuptools import setup, find_packages
def readme():
with open('README.rst') as f:
return f.read()
# Note that this does not set a version number explicitly, but automatically
# figures out a version based on git tags
setup(name='brian2tools',
url='https://github.com/brian-team/brian2tools',
version='0.3',
packages=find_packages(),
package_data={'brian2tools.nmlexport': ['LEMSUnitsConstants.xml',
'NeuroMLCoreDimensions.xml'],
'brian2tools.tests': ['samples/*.nml']},
install_requires=['matplotlib>=1.3.1',
'brian2>=2.0',
'setuptools',
'setuptools_scm',
'pylems>=0.4.9',
'libNeuroML>=0.2.18',
'markdown_strings'],
provides=['brian2tools'],
extras_require={'test': ['pytest'],
'docs': ['sphinx>=1.7']},
use_2to3=False,
description='Tools for the Brian 2 simulator',
long_description=readme(),
author='Marcel Stimberg, Dan Goodman, Romain Brette',
author_email='[email protected]',
license='CeCILL-2.1',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: CEA CNRS Inria Logiciel Libre License, version 2.1 (CeCILL-2.1)',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Bio-Informatics'
],
keywords='visualization neuroscience',
python_requires='>=3.5'
)