-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
228 lines (207 loc) · 6.26 KB
/
pyproject.toml
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
[build-system]
requires = ["hatchling","hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "idc-index"
authors = [
{ name = "Andrey Fedorov", email = "[email protected]" },
{ name = "Vamsi Thiriveedhi", email = "[email protected]" },
]
description = "Package to query and download data from an index of ImagingDataCommons"
readme = "README.md"
license.file = "LICENSE"
requires-python = ">=3.8"
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.8",
"Programming Language :: Python :: 3.9",
"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>=0.10.0,<1.1.0',
"idc-index-data==20.0.0",
"packaging",
"pandas<2.2",
"platformdirs",
"psutil",
"pyarrow",
"requests",
"s5cmd",
"sphinx-click",
"tqdm"
]
[project.optional-dependencies]
test = [
"pytest >=6",
"pytest-cov >=3",
]
dev = [
"pytest >=6",
"pytest-cov >=3",
]
docs = [
"sphinx>=7.0",
"myst_parser>=0.13",
"sphinx_copybutton",
"sphinx_autodoc_typehints",
"furo>=2023.08.17",
]
[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.8"
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
"B904", # Checks for raise statements in exception handlers that lack a from clause.
"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
"PD901", # Avoid using the generic variable name df for DataFrames
"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()
"RET504", # Unnecessary assignment to {name} before return statement
"RET506", # Unnecessary {branch} after raise statement
"SIM102", # Use a single if statement instead of nested if statements
"SIM108", # Use ternary operator {contents} instead of if-else-block
"SIM117", # Use a single with statement with multiple contexts instead of nested with statements
"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.8"
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",
]