forked from minnelab/MAIA
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
128 lines (116 loc) · 3.38 KB
/
setup.cfg
File metadata and controls
128 lines (116 loc) · 3.38 KB
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
[metadata]
name = maia-toolkit
author = Bendazzoli Simone
author_email = simben@kth.se
url = https://github.com/kthcloud/MAIA.git
description = MAIA is a Kubernetes-based collaborative platform for Medical AI, with integration in the clinical workflow of AI.
long_description = file:README.md
long_description_content_type = text/markdown; charset=UTF-8
platforms = OS Independent
license = GPLv3
license_files =
LICENSE
project_urls =
Documentation=https://maia-toolkit.readthedocs.io
Bug Tracker=https://github.com/kthcloud/MAIA
Source Code=https://github.com/kthcloud/MAIA/issues
[options]
python_requires = >= 3.8
# for compiling and develop setup only
# no need to specify the versions so that we could
# compile for multiple targeted versions.
install_requires =
ruamel_yaml
python-keycloak
kubernetes
minio
numpy
omegaconf
pandas
pyhelm3
PyYAML
Requests
SQLAlchemy
toml
nltk
click
hydra-core
[flake8]
select = B,C,E,F,N,P,T4,W,B9
max_line_length = 120
ignore =
E203
E501
E741
W503
W504
C408
N812
B023
B905
B028
B907
B908
per_file_ignores = __init__.py: F401, __main__.py: F401
exclude = *.pyi,.git,.eggs,_version.py,versioneer.py,venv,.venv,_version.py
[isort]
known_first_party = MAIA
profile = black
line_length = 120
skip = .git, .eggs, venv, .venv, versioneer.py, _version.py, conf.py,
skip_glob = *.pyi
add_imports = from __future__ import annotations
append_only = true
[versioneer]
VCS = git
style = pep440
versionfile_source = MAIA/_version.py
versionfile_build = MAIA/_version.py
tag_prefix = v
parentdir_prefix =
[mypy]
# Suppresses error messages about imports that cannot be resolved.
ignore_missing_imports = True
# Changes the treatment of arguments with a default value of None by not implicitly making their type Optional.
no_implicit_optional = True
# Warns about casting an expression to its inferred type.
warn_redundant_casts = True
# No error on unneeded # type: ignore comments.
warn_unused_ignores = False
# Shows a warning when returning a value with type Any from a function declared with a non-Any return type.
warn_return_any = True
# Prohibit equality checks, identity checks, and container checks between non-overlapping types.
strict_equality = True
# Shows column numbers in error messages.
show_column_numbers = True
# Shows error codes in error messages.
show_error_codes = True
# Use visually nicer output in error messages: use soft word wrap, show source code snippets, and show error location markers.
pretty = False
# Warns about per-module sections in the config file that do not match any files processed when invoking mypy.
warn_unused_configs = True
# Make arguments prepended via Concatenate be truly positional-only.
strict_concatenate = True
# Allows variables to be redefined with an arbitrary type,
# as long as the redefinition is in the same block and nesting level as the original definition.
# allow_redefinition = True
exclude = venv/
[mypy-versioneer]
# Ignores all non-fatal errors.
ignore_errors = True
[coverage:run]
concurrency = multiprocessing
source = .
data_file = .coverage/.coverage
omit = setup.py
[coverage:report]
exclude_lines =
pragma: no cover
if TYPE_CHECKING:
# Don't complain if tests don't hit code:
raise NotImplementedError
if __name__ == .__main__.:
show_missing = True
skip_covered = True
[coverage:xml]
output = coverage.xml