Skip to content

Commit 3ab9a65

Browse files
committed
Test more
1 parent 9d441e9 commit 3ab9a65

File tree

2 files changed

+42
-35
lines changed

2 files changed

+42
-35
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
python-version: [ 3.9, "3.10", "3.12" ]
16+
python-version: [ 3.9, "3.10", "3.11", "3.12" ]
1717
engine: [ jNeuroML, jNeuroML_NEURON, jNeuroML_NetPyNE, jNeuroML_validate, jNeuroML_PyNN_NEURON ]
1818

1919
steps:

setup.py

Lines changed: 41 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,53 @@
11
from setuptools import setup
22

33
import opencortex
4+
45
version = opencortex.__version__
56

67
setup(
7-
name='OpenCortex',
8+
name="OpenCortex",
89
version=version,
9-
author='Rokas Stanislovas and Padraig Gleeson',
10-
author_email='[email protected]',
11-
packages = ['opencortex',
12-
'opencortex.core',
13-
'opencortex.build',
14-
'opencortex.test',
15-
'opencortex.utils'],
10+
author="Rokas Stanislovas and Padraig Gleeson",
11+
author_email="[email protected]",
12+
packages=[
13+
"opencortex",
14+
"opencortex.core",
15+
"opencortex.build",
16+
"opencortex.test",
17+
"opencortex.utils",
18+
],
1619
package_data={
17-
'opencortex': [
18-
'../NeuroML2/prototypes/iaf/*',
19-
'../NeuroML2/prototypes/izhikevich/*',
20-
'../NeuroML2/prototypes/Thalamocortical/*',
21-
'../NeuroML2/prototypes/BlueBrainProject_NMC/*',
22-
'../NeuroML2/prototypes/AllenInstituteCellTypesDB_HH/*',
23-
'../NeuroML2/prototypes/L23Pyr_SmithEtAl2013/*',
24-
'../NeuroML2/prototypes/acnet2/*']},
25-
26-
url='https://github.com/OpenSourceBrain/OpenCortex',
27-
license='LICENSE.lesser',
28-
description='A framework for building cortical network models',
29-
long_description=open('README.md').read(),
20+
"opencortex": [
21+
"../NeuroML2/prototypes/iaf/*",
22+
"../NeuroML2/prototypes/izhikevich/*",
23+
"../NeuroML2/prototypes/Thalamocortical/*",
24+
"../NeuroML2/prototypes/BlueBrainProject_NMC/*",
25+
"../NeuroML2/prototypes/AllenInstituteCellTypesDB_HH/*",
26+
"../NeuroML2/prototypes/L23Pyr_SmithEtAl2013/*",
27+
"../NeuroML2/prototypes/acnet2/*",
28+
]
29+
},
30+
url="https://github.com/OpenSourceBrain/OpenCortex",
31+
license="LICENSE.lesser",
32+
description="A framework for building cortical network models",
33+
long_description=open("README.md").read(),
3034
install_requires=[
31-
'pyNeuroML>=0.3.18', # sets dependencies for other neuroml libs
32-
'matplotlib',
33-
'tables'],
35+
"pyNeuroML>=0.3.18", # sets dependencies for other neuroml libs
36+
"matplotlib",
37+
"tables",
38+
],
3439
dependency_links=[
35-
'git+https://github.com/NeuralEnsemble/libNeuroML.git@development#egg=libNeuroML-0.2.10'
40+
"git+https://github.com/NeuralEnsemble/libNeuroML.git@development#egg=libNeuroML-0.2.10"
41+
],
42+
classifiers=[
43+
"Intended Audience :: Science/Research",
44+
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
45+
"Natural Language :: English",
46+
"Operating System :: OS Independent",
47+
"Programming Language :: Python :: 3.8",
48+
"Programming Language :: Python :: 3.9",
49+
"Programming Language :: Python :: 3.10",
50+
"Programming Language :: Python :: 3.11",
51+
"Topic :: Scientific/Engineering",
3652
],
37-
classifiers = [
38-
'Intended Audience :: Science/Research',
39-
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
40-
'Natural Language :: English',
41-
'Operating System :: OS Independent',
42-
'Programming Language :: Python :: 2.6',
43-
'Programming Language :: Python :: 2.7',
44-
'Programming Language :: Python :: 3.2',
45-
'Topic :: Scientific/Engineering']
4653
)

0 commit comments

Comments
 (0)