Skip to content

Commit d742127

Browse files
committed
NF - start of dicom package structure
1 parent ab845a2 commit d742127

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

nibabel/nicom/tests/data_pkgs.py

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
''' Data packages for DICOM testing '''
2+
3+
from ... import data as nibd
4+
5+
PUBLIC_PKG_DEF = dict(
6+
name = 'nipy-dicom_public',
7+
version = '0.1')
8+
9+
PRIVATE_PKG_DEF = dict(
10+
name = 'nipy-dicom_private',
11+
version = '0.1')
12+
13+
14+
PUBLIC_DS = nibd.datasource_or_bomber(PUBLIC_PKG_DEF)
15+
PRIVATE_DS = nibd.datasource_or_bomber(PRIVATE_PKG_DEF)

0 commit comments

Comments
 (0)