-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.cfg
58 lines (53 loc) · 1.61 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
[pep8]
ignore=E221,E501,E701
[flake8]
ignore = E221,E501,E701
max-line-length = 120
exclude = tests/*
max-complexity = 10
[metadata]
name = quickspikes
version = attr: quickspikes.__version__
description = detect and extract spikes in time series data
long_description = file: README.rst
long_description_content_type = text/x-rst
license = GNU General Public License (GPL)
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Science/Research
License :: OSI Approved :: GNU General Public License (GPL)
Programming Language :: Python
Programming Language :: Python :: 3.6
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
Programming Language :: Python :: 3.12
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Topic :: Scientific/Engineering
Operating System :: Unix
Operating System :: POSIX :: Linux
Operating System :: MacOS :: MacOS X
Operating System :: Microsoft :: Windows
Natural Language :: English
author = Dan Meliza
author_email = dan@meliza.org
maintainer = Dan Meliza
maintainer_email = dan@meliza.org
url = https://github.com/melizalab/quickspikes
[options]
zip_safe = false
packages = quickspikes
python_requires = >= 3.6
setup_requires =
setuptools >=58.1.0
install_requires =
numpy >= 1.19.5
test_suite = tests
[options.extras_require]
test =
pytest >= 7.0
[options.packages.find]
exclude = *test*