-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
243 lines (222 loc) · 7.23 KB
/
pyproject.toml
File metadata and controls
243 lines (222 loc) · 7.23 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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
[build-system]
requires = ["hatchling","hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "idc-index"
authors = [
{ name = "Andrey Fedorov", email = "andrey.fedorov@gmail.com" },
{ name = "Vamsi Thiriveedhi", email = "vthiriveedhi@mgh.harvard.edu" },
]
description = "Python package to simplify access to the data available in NCI Imaging Data Commons"
readme = "README.md"
license.file = "LICENSE"
requires-python = ">=3.10"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
"Typing :: Typed",
]
dynamic = ["version"]
dependencies = [
"click",
'duckdb>=1.0.0,<2.0.0',
"idc-index-data==24.2.0",
"packaging",
"pandas<=2.2.4",
"platformdirs",
"psutil",
"pyarrow",
"requests",
"s5cmd>=0.3.2",
"tqdm"
]
[project.optional-dependencies]
test = [
"pytest >=6",
"pytest-cov >=3",
]
dev = [
"pytest >=6",
"pytest-cov >=3",
]
docs = [
"sphinx>=7.0,<8",
"myst_parser>=0.13,<5.0",
"sphinx_copybutton",
"sphinx_autodoc_typehints",
"sphinx-click",
"furo>=2023.08.17",
"sphinxcontrib-mermaid<2",
]
[project.scripts]
idc = 'idc_index.cli:idc'
[project.urls]
Homepage = "https://github.com/ImagingDataCommons/idc-index"
"Bug Tracker" = "https://github.com/ImagingDataCommons/idc-index/issues"
Discussions = "https://discourse.canceridc.dev/"
Changelog = "https://github.com/ImagingDataCommons/idc-index/releases"
[tool.hatch]
version.source = "vcs"
build.hooks.vcs.version-file = "idc_index/_version.py"
[tool.hatch.envs.default]
features = ["test"]
scripts.test = "pytest {args}"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = ["-ra", "--showlocals", "--strict-markers", "--strict-config"]
xfail_strict = true
filterwarnings = [
"error",
# https://github.com/dateutil/dateutil/issues/1314
"ignore:datetime.datetime.utcfromtimestamp.. is deprecated.*:DeprecationWarning:dateutil",
]
log_cli_level = "INFO"
testpaths = [
"tests",
]
python_files = [
"idcindex.py",
"*_test.py",
"test_*.py",
]
[tool.coverage]
run.source = ["idc_index"]
report.exclude_also = [
'\.\.\.',
'if typing.TYPE_CHECKING:',
]
[tool.mypy]
files = ["idc_index", "tests"]
python_version = "3.10"
warn_unused_configs = true
strict = true
enable_error_code = ["ignore-without-code", "redundant-expr", "truthy-bool"]
warn_unreachable = true
disallow_untyped_defs = false
disallow_incomplete_defs = false
[[tool.mypy.overrides]]
module = "idc_index.*"
disallow_untyped_defs = true
disallow_incomplete_defs = true
[tool.ruff]
src = ["idc_index"]
extend-exclude = ["./CONTRIBUTING.md"]
[tool.ruff.lint]
extend-select = [
"B", # flake8-bugbear
"I", # isort
"ARG", # flake8-unused-arguments
"C4", # flake8-comprehensions
"D", # pydocstyle
"EM", # flake8-errmsg
"ICN", # flake8-import-conventions
"G", # flake8-logging-format
"PGH", # pygrep-hooks
"PIE", # flake8-pie
"PL", # pylint
"PT", # flake8-pytest-style
"PTH", # flake8-use-pathlib
"RET", # flake8-return
"RUF", # Ruff-specific
"SIM", # flake8-simplify
"T20", # flake8-print
"UP", # pyupgrade
"YTT", # flake8-2020
"EXE", # flake8-executable
"NPY", # NumPy specific rules
"PD", # pandas-vet
]
ignore = [
"PLR09", # Too many <...>
"PLR2004", # Magic value used in comparison
"ISC001", # Conflicts with formatter
# Exceptions below are specific to idc-index
"B007", # Loop control variable {name} not used within loop body
"B009", # Do not call `getattr` with a constant attribute value.
"B010", # Do not call `setattr` with a constant attribute value.
"B904", # Checks for raise statements in exception handlers that lack a from clause.
"D100", # Missing docstring in public module
"D101", # Missing docstring in public class
"D102", # Missing docstring in public method
"D107", # Missing docstring in `__init__`"
"D417", # Missing argument description in the docstring
"D202", # Checks for docstrings on functions that are separated by one or more blank lines from the function body.
"D205", # 1 blank line required between summary line and description
"E722", # Do not use bare except
"EM101", # Exception must not use a string literal, assign to variable first
"F841", # Local variable {name} is assigned to but never used
"G003", # Logging statement uses +
"G004", # Logging statement uses f-string
"PD011", # Use .to_numpy() instead of .values
"PD015", # Use `.merge` method instead of `pd.merge` function.
"PLR5501", # Checks for else blocks that consist of a single if statement.
"PT009", # Use a regular assert instead of unittest-style {assertion}
"PTH100", # os.path.abspath() should be replaced by Path.resolve()
"PTH103", # os.makedirs() should be replaced by Path.mkdir(parents=True)
"PTH107", # os.remove() should be replaced by Path.unlink()
"PTH110", # os.path.exists() should be replaced by Path.exists()
"PTH118", # Checks for uses of os.path.join
"PTH119", # os.path.basename() should be replaced by Path.name
"PTH120", # os.path.dirname() should be replaced by Path.parent
"PTH123", # open() should be replaced by Path.open()
"PTH208", # Checks for uses of os.listdir.
"RET504", # Unnecessary assignment to {name} before return statement
"RET506", # Unnecessary {branch} after raise statement
"RUF013", # PEP 484 prohibits implicit `Optional`
"RUF059", # Unpacked variable `stderr` is never used
"SIM102", # Use a single if statement instead of nested if statements
"SIM105", # Use `contextlib.suppress(FileNotFoundError)` instead of `try`-`except`-`pass`
"SIM108", # Use ternary operator {contents} instead of if-else-block
"SIM115", # Use a context manager for opening files
"SIM117", # Use a single with statement with multiple contexts instead of nested with statements
"SIM300", # Yoda condition detected
"T201", # print found
]
isort.required-imports = ["from __future__ import annotations"]
# Uncomment if using a _compat.typing backport
# typing-modules = ["idc_index._compat.typing"]
[tool.ruff.lint.per-file-ignores]
"docs/conf.py" = ["D"]
"tests/**" = [
"D",
"T20",
]
"noxfile.py" = [
"D",
"T20",
]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.pylint]
py-version = "3.10"
ignore-paths = [".*/_version.py"]
reports.output-format = "colorized"
similarities.ignore-imports = "yes"
messages_control.disable = [
"design",
"fixme",
"line-too-long",
"missing-module-docstring",
"wrong-import-position",
# Exceptions below are specific to idc-index
"invalid-name",
"missing-class-docstring",
"missing-function-docstring",
"logging-fstring-interpolation",
"logging-not-lazy",
"no-else-raise",
"raise-missing-from",
"undefined-loop-variable",
"unspecified-encoding",
"unused-variable",
]