-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.cfg
53 lines (47 loc) · 1.21 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
[metadata]
name = pyelectro
version = 0.2.7
author = Michael Vella, Padraig Gleeson
author_email = [email protected], [email protected]
url = https://github.com/NeuralEnsemble/pyelectro
license = BSD-2-clause
description = A Python library for analysis of electrophysiological data
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 =
numpy
scipy
matplotlib
packages = find:
[options.packages.find]
where = .
include = pyelectro*
[options.extras_require]
dev =
pytest
pytest-cov
[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 =
doc,
build
[mypy]
exclude =
doc,
build