forked from darksim33/Pyneapple
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (61 loc) · 1.9 KB
/
Copy pathpyproject.toml
File metadata and controls
68 lines (61 loc) · 1.9 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
[tool.poetry]
name = "Pyneapple"
version = "1.0.2"
description = "Pyneapple is an advanced tool for analysing multi-exponential signal data in MR DWI images."
authors = ["Thomas Thiel <thomas.thiel@hhu.de>", "Jonas Jasse, <jonas.jasse@hhu.de>"]
maintainers = ["Jonas Jasse <jonas.jasse@hhu.de>"]
readme = "README.md"
license = "GPL-3.0-or-later"
homepage = "https://github.com/darksim33/Pyneapple/"
repository = "https://github.com/darksim33/Pyneapple/"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Operating System :: Microsoft :: Windows :: Windows 11",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Image Processing",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
]
packages = [
{ include = "pyneapple", from = "src" }
]
include = [
"src/pyneapple/resources/fitting/*.json",
"src/pyneapple/resources/images/*.png",
"src/pyneapple/resources/images/*.ico"
]
[tool.poetry.dependencies]
python = "^3.11"
numpy = "^1.24"
nibabel = "^5.0.1"
matplotlib = "^3.7.0"
Pillow = "^10.2.0"
scipy = "^1.10.1"
imantics = "^0.1.12"
opencv-python = "^4.8.0.76"
pandas = "^2.1.3"
XlsxWriter = "^3.1.5"
tqdm = "^4.66.2"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
black = "^24.3.0"
pytest = "^8.1.1"
pytest-order = "^1.2.1"
pytest-qt = "^4.4.0"
openpyxl = "^3.1.2"
[tool.poetry.group.ui]
optional = true
[tool.poetry.group.ui.dependencies]
PyQt6 = "^6.4.2"
parallelbar = "^2.4"
[tool.poetry.scripts]
PyneappleScript = "pyneapple.fit.pyneapple_multi_script:run"
PyneappleUI = "pyneapple.ui.pyneapple_ui:run"
#PyneappleUI_console = "pyneapple.ui.pyneapple_ui:run"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"