|
1 | 1 | from setuptools import setup |
2 | 2 |
|
3 | 3 | import opencortex |
| 4 | + |
4 | 5 | version = opencortex.__version__ |
5 | 6 |
|
6 | 7 | setup( |
7 | | - name='OpenCortex', |
| 8 | + name="OpenCortex", |
8 | 9 | version=version, |
9 | | - author='Rokas Stanislovas and Padraig Gleeson', |
10 | | - |
11 | | - packages = ['opencortex', |
12 | | - 'opencortex.core', |
13 | | - 'opencortex.build', |
14 | | - 'opencortex.test', |
15 | | - 'opencortex.utils'], |
| 10 | + author="Rokas Stanislovas and Padraig Gleeson", |
| 11 | + |
| 12 | + packages=[ |
| 13 | + "opencortex", |
| 14 | + "opencortex.core", |
| 15 | + "opencortex.build", |
| 16 | + "opencortex.test", |
| 17 | + "opencortex.utils", |
| 18 | + ], |
16 | 19 | 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(), |
30 | 34 | 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 | + ], |
34 | 39 | 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", |
36 | 52 | ], |
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'] |
46 | 53 | ) |
0 commit comments