-
Notifications
You must be signed in to change notification settings - Fork 29
/
pyproject.toml
65 lines (58 loc) · 1.22 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
[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>=0.1.0',
'nibabel>=3.0.2',
'pandas>=1.0.0',
'openpyxl>=3.0.3',
'xlrd>=1.0.0',
]
description = "Bruker PvDataset Loader"
license = {text = "GNLv3"}
dynamic = ["version"]
maintainers = [
{name = "SungHo Lee", email = 'shlee@unc.edu'}
]
name = "brkraw"
readme = "README.md"
requires-python = ">=3.7"
keywords = [
'bruker',
'data_handler',
'converter',
'administrator_tool',
'extensible',
'xoani'
]
[project.urls]
Homepage = "https://brkraw.github.io"
[project.optional-dependencies]
legacy = [
'SimpleITK>=1.2.4'
]
viewer = [
'pillow>=7.1.1'
]
dev = [
"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'