-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
65 lines (58 loc) · 1.29 KB
/
setup.cfg
File metadata and controls
65 lines (58 loc) · 1.29 KB
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
[metadata]
name = pyNeuroMatic
version = 0.0.1
author = Jason Rothman
author_email = j.rothman@ucl.ac.uk
url = https://github.com/SilverLabUCL/pyNeuroMatic
license = MIT
description = A collection of Python tools for acquiring, analysing and simulating electrophysiological data
long_description = file: README.md
long_description_content_type = text/markdown
classifiers=
Intended Audience :: Science/Research
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
Topic :: Scientific/Engineering
[options]
install_requires =
numpy>=1.24
scipy
h5py
colorama
tomli;python_version<"3.11"
tomli-w
packages = find:
[options.packages.find]
where = .
include = pyneuromatic*
[options.package_data]
* =
lib/*.jar
*.xml
*.html
*.md
*.xsl
*.hoc
[options.extras_require]
igor =
igor2
abf =
pyabf
gui =
PyQt6>=6.5
dev =
pytest
pytest-cov
pytest-qt # for GUI testing
pre-commit
black
isort
flake8
mypy
[flake8]
extend-ignore = E501, E502, F403, F405, W503, W504