Skip to content

Commit 9ef8a0b

Browse files
authored
Merge pull request #16 from thewtex/wrapping-types
Wrapping types
2 parents a76d6a1 + 5eabfce commit 9ef8a0b

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

setup.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
setup(
1515
name='itk-hasi',
16-
version='0.1.0',
16+
version='0.1.1',
1717
author='Kitware Medical',
1818
author_email='[email protected]',
1919
packages=['itk'],
@@ -44,6 +44,7 @@
4444
keywords='ITK InsightToolkit',
4545
url=r'https://itk.org/',
4646
install_requires=[
47-
r'itk>=5.1.0.post3'
47+
r'itk>=5.1.0.post3',
48+
r'itk-boneenhancement'
4849
]
4950
)
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
itk_wrap_class("itk::LandmarkAtlasSegmentationFilter" POINTER)
22
itk_wrap_image_filter("${WRAP_ITK_SCALAR}" 2 3)
3-
itk_wrap_image_filter_combinations("${WRAP_ITK_SIGN_INT}" "${WRAP_ITK_SCALAR}" 3)
43
itk_end_wrap_class()

wrapping/test/CMakeLists.txt

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
itk_python_expression_add_test(NAME itkSegmentBonesInMicroCTFilterPythonTest EXPRESSION "itkSegmentBonesInMicroCTFilter = itk.SegmentBonesInMicroCTFilter.New()")
2+
itk_python_expression_add_test(NAME itkLandmarkAtlasSegmentationFilterPythonTest EXPRESSION "itkLandmarkAtlasSegmentationFilter = itk.LandmarkAtlasSegmentationFilter.New()")

0 commit comments

Comments
 (0)