-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.cfg
46 lines (40 loc) · 1.24 KB
/
setup.cfg
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
[metadata]
name = neurotune
version = 0.2.7
author = Michael Vella, Padraig Gleeson
author_email = [email protected], [email protected]
url = https://github.com/NeuralEnsemble/neurotune
license = BSD-2-clause
description = A Python library for optimising neuronal models
long_description = file: README.md
long_description_content_type=text/markdown
classifiers=
License :: OSI Approved :: BSD License
Development Status :: 3 - Alpha
Intended Audience :: Science/Research
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Topic :: Scientific/Engineering
[options]
install_requires =
scipy
pyelectro
# standard inspyred from pypi is fine for running serial optimisation jobs
inspyred
packages = find:
[options.packages.find]
where = .
include = neurotune*
[options.extras_require]
dev =
NEURON
flake8
# contains fixes for py3, necessary to run multiple parallel jobs
inspyred @ git+https://github.com/aarongarrett/inspyred.git@master#egg=inspyred
[flake8]
ignore = E501, E502, F403, F405