-
Notifications
You must be signed in to change notification settings - Fork 122
/
setup.cfg
80 lines (76 loc) · 1.56 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
79
80
[metadata]
name = pybids
url = http://github.com/bids-standard/pybids
author = PyBIDS Developers
author_email = bids-discussion@googlegroups.com
maintainer = PyBIDS Developers
maintainer_email = bids-discussion@googlegroups.com
description = bids: interface with datasets conforming to BIDS
long_description = file:long_description.rst
long_description_content_type = text/x-rst; charset=UTF-8
license = MIT
platforms = OS Independent
classifiers =
Development Status :: 3 - Alpha
Environment :: Console
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python
Topic :: Scientific/Engineering
[options]
python_requires = >=3.6
install_requires =
numpy
scipy
nibabel >=2.1
pandas >=0.23
formulaic
sqlalchemy <1.4.0.dev0
bids-validator
num2words
click
tests_require =
pytest >=3.3
mock
packages = find:
include_package_data = True
[options.extras_require]
doc =
sphinx >=2.2
numpydoc
sphinx_rtd_theme
docs =
%(doc)s
plotting =
graphviz
plottings =
%(plotting)s
test =
pytest >=3.3
tests =
%(test)s
ci_tests =
%(test)s
%(plotting)s
codecov
pytest-cov
pytest-xdist
tutorial =
nbconvert
jupyter_client
ipykernel
dev =
%(doc)s
%(test)s
%(plotting)s
[options.entry_points]
console_scripts =
pybids=bids.cli:cli
[versioneer]
VCS = git
style = pep440-pre
versionfile_source = bids/_version.py
versionfile_build = bids/_version.py
tag_prefix =
parentdir_prefix =