-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
70 lines (60 loc) · 1.68 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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "quantconn"
description = "MICCAI 23 Challenge Tools for Quantitative Connectivity through Harmonized Preprocessing of Diffusion competition"
readme = "README.md"
requires-python = ">=3.8"
license = { text="MIT" }
authors = [
{ name="Serge Koudoro", email="[email protected]" },
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"dipy>=1.7.0",
#"dipy@git+https://[email protected]/arokem/dipy@11a94c0fcf9b3",
"typer[all]>=0.9.0",
"requests>=2.26.0",
"scipy",
"bs4",
"matplotlib",
"HD-BET@git+https://github.com/MIC-DKFZ/HD-BET.git",
"pingouin==0.5.3",
"pandas==1.5.2",
"bctpy==0.6.1",
]
dynamic = ["version"]
[project.urls]
"Homepage" = "https://github.com/dipy/miccai23"
[project.scripts]
quantconn = "quantconn.cli:app"
[project.optional-dependencies]
all = ["quantconn[style, test, typing]"]
style = ["flake8", "blue", "isort", "pre-commit"]
typing = ["mypy", "types-Pillow", "data-science-types"]
test = [
"coverage",
"pytest !=5.3.4",
"pytest-cov",
"pytest-doctestplus",
]
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "quantconn/_version.py"
[tool.hatch.build.targets.sdist]
exclude = [".git_archival.txt"]
[tool.hatch.build.targets.wheel]
packages = ["quantconn"]
[tool.hatch.version.raw-options]
local_scheme = "no-local-version"
version_scheme = "release-branch-semver"
[tool.hatch.metadata]
allow-direct-references = true