-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
53 lines (50 loc) · 1.75 KB
/
setup.py
File metadata and controls
53 lines (50 loc) · 1.75 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
from setuptools import setup
import opencortex
version = opencortex.__version__
setup(
name="OpenCortex",
version=version,
author="Rokas Stanislovas and Padraig Gleeson",
author_email="p.gleeson@gmail.com",
packages=[
"opencortex",
"opencortex.core",
"opencortex.build",
"opencortex.test",
"opencortex.utils",
],
package_data={
"opencortex": [
"../NeuroML2/prototypes/iaf/*",
"../NeuroML2/prototypes/izhikevich/*",
"../NeuroML2/prototypes/Thalamocortical/*",
"../NeuroML2/prototypes/BlueBrainProject_NMC/*",
"../NeuroML2/prototypes/AllenInstituteCellTypesDB_HH/*",
"../NeuroML2/prototypes/L23Pyr_SmithEtAl2013/*",
"../NeuroML2/prototypes/acnet2/*",
]
},
url="https://github.com/OpenSourceBrain/OpenCortex",
license="LICENSE.lesser",
description="A framework for building cortical network models",
long_description=open("README.md").read(),
install_requires=[
"pyNeuroML>=0.3.18", # sets dependencies for other neuroml libs
"matplotlib",
"tables",
],
dependency_links=[
"git+https://github.com/NeuralEnsemble/libNeuroML.git@development#egg=libNeuroML-0.2.10"
],
classifiers=[
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering",
],
)