-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
executable file
·76 lines (72 loc) · 1.75 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
[metadata]
name = nondefaced-detector
url = https://github.com/poldracklab/nondefaced-detector
author = Nondefaced Detector Developers
author_email = shashankbansal56@gmail.com
description = A package to detect if an MRI Volume has been defaced.
long_description = file: README.md
long_description_content_type = text/markdown
license = Apache License, 2.0
license_file = LICENSE
project_urls =
Bug Tracker = https://github.com/poldracklab/nondefaced-detector/issues
classifiers =
Environment :: Console
Intended Audience :: Developers
Intended Audience :: Education
Intended Audience :: Healthcare Industry
Intended Audience :: Science/Research
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Topic :: Scientific/Engineering :: Artificial Intelligence
Topic :: Software Development
Topic :: Software Development :: Libraries :: Python Modules
[options]
packages = find:
python_requires = >=3.6
install_requires =
click
datalad
decorator==4.4.2
nibabel
nobrainer
numpy==1.19.2
pandas
sklearn
tqdm
[options.entry_points]
console_scripts =
nondefaced-detector = nondefaced_detector.cli.main:cli
[options.extras_require]
cpu = tensorflow >= 2.0.0
gpu = tensorflow-gpu<=2.3.2
dev =
black
ipython
flake8
nbconvert
pre-commit
pytest-cov
scipy
doc =
sphinx>=2.2
numpydoc
sphinx_rtd_theme
docs =
%(doc)s
[flake8]
max-line-length = 88
exclude =
.git/
__pycache__/
build/
dist/
versioneer.py
_version.py
ignore =
E203
W503