-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
71 lines (67 loc) · 1.52 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
[metadata]
description-file = README.md
author = FIU-Neuro developers
copyright = Copyright 2020--now, FIU-Neuro developers
credits = authors
license = Apache 2.0
maintainer = Taylor Salo
email = [email protected]
status = Prototype
url = https://github.com/FIU-Neuro/cis-bidsutils
packagename = cis-bidsutils
description = cis-bidsutils: Functions for BIDS datasets
long_description = file:README.md
long_description_content_type = text/x-md
classifiers =
Development Status :: 3 - Alpha
Environment :: Console
Intended Audience :: Science/Research
License :: OSI Approved :: Apache 2.0 License
Operating System :: OS Independent
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Topic :: Scientific/Engineering
[options]
packages = find:
include_package_data = True
python_requires = >=3.7
install_requires =
numpy
scipy
pandas
nibabel
pybids>=0.10.2
[options.extras_require]
duecredit = duecredit
test =
codecov
coverage
coveralls
flake8
pytest
pytest-cov
docs =
sphinx>=1.5.3
sphinx_rtd_theme
sphinx-argparse
numpydoc
m2r
style =
flake8
all =
%(docs)s
%(duecredit)s
%(style)s
%(test)s
[versioneer]
VCS = git
style = pep440
versionfile_source = bidsutils/_version.py
versionfile_build = bidsutils/_version.py
tag_prefix =
parentdir_prefix =
[flake8]
max-line-length = 99
exclude=*build/,tests,**/__init__.py,*/_version.py,*/__about__.py
ignore = E126,E402,W503