forked from AlexVanMeegen/lif_meanfield_tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (24 loc) · 741 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
from setuptools import setup
setup(name = 'lif_meanfield_tools',
version = '0.2',
description = 'Mean-field toolbox for networks of LIF neurons.',
long_description = open('README.md').read(),
url = 'https://github.com/INM-6/lif_meanfield_tools',
author = 'see authors.md',
author_email = '[email protected]',
license = 'GNU GPLv3',
packages = ['lif_meanfield_tools'],
install_requires = [
'setuptools>=23.1.0',
'numpy>=1.8',
'scipy>=0.14',
'Cython>=0.20',
'h5py>=2.5',
'matplotlib>=2.0',
'pint',
'h5py_wrapper',
'pyyaml',
'requests',
'mpmath',
'decorator'],
python_requires='>=3')