forked from scilus/ismrm_2015_tractography_challenge_scoring
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
99 lines (89 loc) · 2.18 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
[build-system]
requires = [
"setuptools >= 66",
"wheel",
"setuptools_scm >= 6.4",
"Cython",
"numpy",
]
build-backend = "setuptools.build_meta"
[project]
authors = [
{name = "The challenge team"}, {email = "[email protected]"}
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
]
dependencies = [
"Cython",
"dipy",
"nibabel",
"numpy",
"scipy",
]
description = "Scoring system used for the ISMRM 2015 Tractography Challenge"
dynamic = ["version"]
keywords = ["DWI, neuroimaging, tractography"]
maintainers = [
{name = "Jon Haitz Legarreta"}, {email = "[email protected]"}
]
name = "challenge_scoring"
readme = "README.md"
requires-python = ">=3.10"
[project.optional-dependencies]
test = [
"hypothesis >= 6.8.0",
"pytest == 7.2.0",
"pytest-cov",
"pytest-pep8",
"pytest-xdist",
]
dev = [
"black == 21.5b1",
"flake8 == 3.9.2",
"flake8-docstrings == 1.6.0",
"isort == 5.11.5",
"pre-commit >= 2.9.0",
]
[project.scripts]
score_tractogram = "scripts:score_tractogram.main"
[options.extras_require]
all = [
"%(test)s",
]
[project.urls]
homepage = "https://github.com/scilus/ismrm_2015_tractography_challenge_scoring"
documentation = "https://github.com/scilus/ismrm_2015_tractography_challenge_scoring"
repository = "https://github.com/scilus/ismrm_2015_tractography_challenge_scoring"
[tool.black]
line-length = 79
target-version = ["py310"]
exclude ='''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
| data # also separately exclude project-specific files
# and folders in the root of the project
)
'''
[tool.isort]
profile = "black"
line_length = 79
src_paths = ["challenge_scoring"]
[tool.setuptools.packages]
find = {} # Scanning implicit namespaces is active by default
[tool.setuptools_scm]
write_to = "challenge_scoring/_version.py"