-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.cfg
82 lines (78 loc) · 2.1 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
81
82
[metadata]
name = mrsegmentator
version = 1.2.0
author = Hartmut Häntze
author_email = [email protected]
description = Multi-Modality Segmentation of 40 Classes in MRI and CT
long_description = file: README.md, LICENSE.txt, CHANGELOG.md
long_description_content_type = text/markdown
url = https://github.com/hhaentze/mrsegmentator
project_urls =
Bug Tracker = https://github.com/hhaentze/mrsegmentator/issues
repository = https://github.com/hhaentze/mrsegmentator
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: Apache Software License
Operating System :: POSIX :: Linux
Intended Audience :: Developers
Intended Audience :: Science/Research
Intended Audience :: Healthcare Industry
Topic :: Scientific/Engineering :: Artificial Intelligence
Topic :: Scientific/Engineering :: Image Recognition
Topic :: Scientific/Engineering :: Medical Science Apps.
[options]
package_dir =
= src
packages = find:
python_requires = >=3.9
install_requires =
nnunetv2 == 2.2.1
argparse
[options.packages.find]
where = src
exclude =
bundles*
data*
logs*
metadata*
model*
notebooks*
scripts*
src/mrsegmentator/weights
[options.entry_points]
console_scripts =
mrsegmentator = mrsegmentator.main:main
[flake8_nb]
max-line-length = 120
select = C,E,F,W,B
extend-ignore =
# disable E203 (whitespace before :) because it is not PEP8 and Black compliant
E203,
# disable E114 (indentation is not a multiple of four) because of a bug in flake8_nb where it sees empty lines as comment lines
E114,
# line break before binary operator. Deactivated because of incompatibility with black
W503,
# lambda expressions can be a good alternative to small single use functions
E731
import_order_style = appnexus
exclude =
.git,
.eggs/,
__pycache__,
.ipynb_checkpoints,
*/tmp_*,
*/temp_*,
build/,
dist/,
data/,
data_local/,
data_test/,
deprecated,
logs/,
notebooks/project_stage_1,
wandb,
./raidiance/annot/DicomViewer,
.venv,
runs/
per-file-ignores =
tests/*:E741