-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
62 lines (54 loc) · 1.52 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
[project]
name = "processing_pipeline"
description = "^ processing pipeline is a temp name"
readme = "README.md"
requires-python = ">=3.7"
license = { text = "MIT License" }
authors = [
{ name = "Vahdeta Suljic", email = "[email protected]" },
{ name = "Andrew Van", email = "[email protected]" },
]
keywords = ["neuroimaging", "preprocessing", "pipeline"]
classifiers = ["License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3"]
urls = { github = "https://github.com/DosenbachGreene/processing_pipeline" }
version = "0.0.1"
dynamic = ["entry-points", "scripts"]
dependencies = [
"memori >= 0.3.6",
"nibabel >= 4.0.2",
"indexed-gzip >= 1.7.0",
"xnat >= 0.4.3",
"pydicom >= 2.3.1",
"matplotlib >= 3.5.1",
"numpy >= 1.23.5",
"scipy >= 1.8.1",
"pandas >= 1.4.2",
"heudiconv >= 0.13.1",
"toml >= 0.10.2",
"seaborn >= 0.11.2",
"pybids >= 0.16.3",
]
[project.optional-dependencies]
medic = ["warpkit >= 0.0.1"]
dev = ["pytest >= 7.2.0", "pytest-pycodestyle >= 2.3.1", "black >= 22.10.0"]
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
zip-safe = false
[tool.setuptools.packages.find]
where = ["."]
include = ["me_pipeline*"]
exclude = ["tests*"]
[tool.black]
line-length = 120
target-version = ["py37", "py38", "py39", "py310"]
[tool.pytest.ini_options]
addopts = "-v --pycodestyle"
testpaths = ["tests", "me_pipeline"]
[tool.coverage.run]
command_line = "-m pytest"
source = []
[tool.coverage.report]
show_missing = true
precision = 2