forked from brian-team/brian2modelfitting
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
56 lines (52 loc) · 1.91 KB
/
setup.py
File metadata and controls
56 lines (52 loc) · 1.91 KB
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
52
53
54
55
56
#! /usr/bin/env python
'''
brian2modelfitting setup script
'''
import os
import sys
from setuptools import setup, find_packages
def readme():
with open('README.md') as f:
return f.read()
version = {}
with open(os.path.join('brian2modelfitting', 'version.py')) as fp:
exec(fp.read(), version)
# Note that this does not set a version number explicitly, but automatically
# figures out a version based on git tags
setup(name='brian2modelfitting',
url='https://github.com/brian-team/brian2modelfitting',
version=version['version'],
packages=find_packages(),
# package_data={},
install_requires=['numpy',
'brian2>=2.2',
'setuptools',
'nevergrad>=0.2,<=0.3',
'scikit-optimize',
'tqdm',
],
provides=['brian2modelfitting'],
extras_require={'test': ['pytest'],
'docs': ['sphinx>=1.8'],
'full': ['efel',
'lmfit']},
python_requires='>=3.6',
use_2to3=False,
zip_safe=False,
description='Modelfitting Toolbox for the Brian 2 simulator',
long_description=readme(),
author='Aleksandra Teska, Marcel Stimberg, Romain Brette, Dan Goodman',
author_email='team@briansimulator.org',
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='model fitting computational neuroscience'
)