-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.cfg
66 lines (59 loc) · 1.23 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
[metadata]
license = MIT
license_files = LICENSE
author = neurobagel developers
author_email = [email protected]
maintainer = Sebastian Urchs
maintainer_email = [email protected]
description = Automatic parsing of BIDS datasets into neurobagel graph compatible jsonld files.
description-file = README.md
long_description = file:README.md
long_description_content_type = text/markdown
classifiers =
Development Status :: 1 - Planning
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
[options]
python_requires = >= 3.9
install_requires =
pybids
typer
rich
pydantic<2
jsonschema
isodate
zip_safe = False
packages = find:
include_package_data = True
[options.package_data]
bagel =
pipeline-catalog/**/*
[options.extras_require]
dev =
flake8
flake8-black
pre-commit
pip-tools
test =
%(dev)s
pytest
coverage
all =
%(test)s
[options.entry_points]
console_scripts =
bagel=bagel.cli:bagel
[flake8]
exclude =
.git,
__pycache__,
docs/,
build,
dist
extend-ignore =
E501,
E203
extend-select = B950
docstring-convention = numpy