forked from BrkRaw/brkraw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
82 lines (70 loc) · 1.53 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
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling"]
[project]
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Medical Science Apps.',
'Natural Language :: English',
]
dependencies = [
'pyyaml>=6.0.1',
'numpy>=1.18.0',
'tqdm>=4.45.0',
'xnippet @ git+https://github.com/dvm-shlee/xnippet.git',
'reshipe', #'reshipe @ git+https://github.com/dvm-shlee/reshipe.git'
]
description = "Bruker PvDataset Loader"
license = {text = "GNLv3"}
dynamic = ["version"]
maintainers = [
{name = "SungHo Lee", email = '[email protected]'}
]
name = "brkraw"
readme = "README.md"
requires-python = ">=3.7"
keywords = [
'bruker',
'data_handler',
'converter',
'administrator_tool',
'extensible',
]
[project.urls]
Homepage = "https://brkraw.github.io"
[tool.hatch.metadata]
allow-direct-references = true
[project.optional-dependencies]
all = ["brkraw[tonii]", "brkraw[viewer]"]
legacy = [
'brkraw[all]',
'pandas>=1.0.0',
'openpyxl>=3.0.3',
'xlrd>=1.0.0',
]
simpleitk = [
'SimpleITK>=1.2.4',
]
tonii = [
'nibabel>=3.0.2',
]
viewer = [
'pillow>=7.1.1'
]
dev = [
"matplotlib",
"flake8",
"pytest",
"nbmake",
"types-PyYAML",
]
[tool.hatch.version]
path = "brkraw/__init__.py"
style = "pep440"
[project.scripts]
brkraw = "brkraw.scripts.brkraw:main"
brk-backup = 'brkraw.scripts.brk_backup:main'
[tool.pytest.ini_options]
log_cli = true
log_cli_level = "DEBUG"