-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
78 lines (69 loc) · 1.55 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
[metadata]
name = mps_data_parser
version = 0.0.4
description = Tool for interacting with google scholar
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/ComputationalPhysiology/mps_data_parser
author = Henrik Finsberg
author_email = [email protected]
license = MIT
license_file = LICENSE
classifiers =
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
keywords = action potential, cell models, features
[options]
packages = find:
install_requires =
numpy
parse
pint
python_requires = >=3.7
package_dir =
=src
zip_safe = False
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
mps-parse = mps_data_parser.scripts:main
[options.extras_require]
dev =
bump2version
ipython
pdbpp
pre-commit
twine
wheel
docs =
Sphinx
myst-parser
sphinx-book-theme
test =
pre-commit
pytest
pytest-cov
[flake8]
exclude = docs
ignore = E203, E266, E501, W503, E731
max-line-length = 88
max-complexity = 18
select = B,C,E,F,W,T4
[aliases]
test = pytest
[tool:pytest]
addopts = --cov=src/mps_data_parser --cov-report html --cov-report xml --cov-report term-missing -v
testpaths =
tests
[isort]
profile = black
[mypy]
files = src/mps_data_parser,tests
ignore_missing_imports = true
exclude = docs