-
Notifications
You must be signed in to change notification settings - Fork 32
/
setup.cfg
88 lines (77 loc) · 1.92 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
[metadata]
name = libNeuroML
version = 0.6.3
author_email = vellamike@gmail.com, p.gleeson@gmail.com
author = libNeuroML authors and contributors
description = A Python library for working with NeuroML descriptions of neuronal models
long_description = file: README.md
long_description_content_type=text/markdown
url = http://libneuroml.readthedocs.org/en/latest/
license = BSD-2-Clause
classifiers =
Intended Audience :: Science/Research
License :: OSI Approved :: BSD License
Natural Language :: English
Operating System :: OS Independent
Development Status :: 5 - Production/Stable
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Topic :: Scientific/Engineering :: Bio-Informatics
Topic :: Scientific/Engineering
[options]
install_requires =
lxml
six
networkx
numpy<2.0.0
tables>=3.3.0
typing; python_version<"3.5"
natsort
packages = find:
[options.packages.find]
where = .
include = neuroml*
exclude = neuroml.test*
[options.package_data]
neuroml.nml =
*.xsd
[options.extras_require]
test =
pytest
dev =
wheel
generateds >= 2.20a; python_version >= '3.0'
cython
numpy<2.0.0
networkx
flake8
pytest
ruff
natsort
pre-commit
doc =
sphinxcontrib-bibtex
pydata-sphinx-theme
natsort
full =
libNeuroML[test]
libNeuroML[dev]
libNeuroML[doc]
[flake8]
# ignore:
# spacing around operators, comment blocks, in argument lists
# lines too long
ignore = E501,E502,F403,F405,E231,E228,E225,E226,E265,E261
exclude =
neuroml/nml/nml.py,
neuroml/nml/helper_methods.py,
doc,
build
[mypy]
ignore_missing_imports = True
follow_imports = silent
exclude = (nml\.py|doc/|build/|helper_methods\.py|generateds_config\.py|examples/)