-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
75 lines (69 loc) · 1.51 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
[metadata]
url = https://github.com/ME-ICA/template-package
license = LGPL 2.1
author = template-package developers
author_email = ""
maintainer = ""
maintainer_email = ""
description = ""
description-file = README.md
long_description =
# template-package
A template repo to use for new repositories.
long_description_content_type = text/md
classifiers =
Development Status :: 2 - Pre-Alpha
Intended Audience :: Science/Research
Topic :: Scientific/Engineering :: Information Analysis
License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
[options]
python_requires = >= 3.6
install_requires =
duecredit
joblib
nibabel
nilearn
numpy>=1.15
scipy>=1.3.3
packages = find:
include_package_data = False
[options.extras_require]
doc =
sphinx>=1.5.3
sphinx_rtd_theme
tests =
codecov
coverage<5.0
flake8>=3.7
flake8-black
flake8-isort
pytest
pytest-cov
dev =
versioneer
all =
%(doc)s
%(tests)s
[options.package_data]
* =
resources/*
tests/data/*
[versioneer]
VCS = git
style = pep440
versionfile_source = template-package/_version.py
versionfile_build = template-package/_version.py
tag_prefix =
parentdir_prefix =
[flake8]
max-line-length = 99
exclude=*build/
ignore = E203,E402,W503
per-file-ignores =
*/__init__.py:F401
[tool:pytest]
log_cli = true