forked from BlueBrain/BluePyMM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
57 lines (49 loc) · 2.08 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
52
53
54
55
56
57
"""bluepymm setup """
"""
Copyright (c) 2018, EPFL/Blue Brain Project
This file is part of BluePyMM <https://github.com/BlueBrain/BluePyMM>
This library is free software; you can redistribute it and/or modify it under
the terms of the GNU Lesser General Public License version 3.0 as published
by the Free Software Foundation.
This library is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
details.
You should have received a copy of the GNU Lesser General Public License
along with this library; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
"""
import setuptools
import versioneer
setuptools.setup(
name="bluepymm",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
install_requires=['sh', 'bluepyopt', 'matplotlib', 'pandas', 'numpy',
'ipyparallel', 'lxml', 'h5py', 'pyyaml'],
packages=setuptools.find_packages(exclude=('notebook',)),
author="BlueBrain Project, EPFL",
author_email="werner.vangeit@epfl.ch",
description="Model Management Python Library (bluepymm)",
long_description="Model Management Python Library (bluepymm)",
url='https://github.com/BlueBrain/BluePyMM',
keywords=[
'optimisation',
'neuroscience',
'BlueBrainProject'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'Operating System :: POSIX',
'Topic :: Scientific/Engineering',
'Topic :: Utilities',
'License :: OSI Approved :: GNU Lesser General Public '
'License v3 (LGPLv3)'],
entry_points={'console_scripts': ['bluepymm=bluepymm.main:main'], },
package_data={
'bluepymm': ['templates/cell_template_neuron.jinja2',
'templates/cell_template_neurodamus.jinja2'],
}
)