-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.cfg
43 lines (41 loc) · 1.22 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
[metadata]
name = mri_distortion_toolkit
author = Brendan Whelan, Paul Liu, Shanshan Shan
author_email = [email protected]
license_files = LICENSE.md
version = attr: mri_distortion_toolkit.__version__
description = Quality assurance tools for MRI geometric distortion
long_description = file: README.md
long_description_content_type = text/markdown
url = https://image-x-institute.github.io/mri_distortion_toolkit/index.html
project_urls =
Bug Tracker = https://github.com/Image-X-Institute/mri_distortion_toolkit
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
[options]
package_dir =
= .
packages = mri_distortion_toolkit, mri_distortion_toolkit.jinja_templates, mri_distortion_toolkit.jinja_templates.themes
include_package_data = True
python_requires = >=3.8
install_requires =
numpy
scipy
scikit-image
matplotlib
pydicom
pandas
seaborn
plotly
jinja2
finufft
get_all_files
[options.package_data]
* = *.html, *.md, *.css
mri_distortion_toolkit.jinja_templates = *.html
mri_distortion_toolkit.jinja_templates.themes = *.css, *.md
[tool:interrogate]
ignore-init-method = true
ignore-module = true
fail-under = 95