forked from BrkRaw/brkraw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
50 lines (45 loc) · 1.12 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
[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 = [
'nibabel>=3.0.2',
'numpy>=1.18.0',
'pandas>=1.0.0',
'pillow>=7.1.1',
'tqdm>=4.45.0',
'openpyxl>=3.0.3',
'xlrd>=1.0.0'
]
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']
[project.urls]
Homepage = "https://github.com/brkraw/brkraw"
[project.optional-dependencies]
SimpleITK = [
'SimpleITK>=1.2.4'
]
dev = [
"flake8",
"pytest",
"nbmake"
]
[tool.hatch.version]
path = "brkraw/__init__.py"
style = "pep440"
[project.scripts]
brkraw = "brkraw.scripts.brkraw:main"
brk-backup = 'brkraw.scripts.brk_backup:main'
brkrecon = "brkraw.scripts.brkrecon:main"