Skip to content

Commit 9518f7e

Browse files
Fix cli; update test and gitignore
1 parent 6f8da19 commit 9518f7e

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.gitignore

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1-
__pycache__/*
21
*.pyc
3-
build/*
2+
__pycache__/
3+
build/
4+
dist/
5+
*.egg-info/

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@
2121
url='https://github.com/constantinpape/pybdv',
2222
license='MIT',
2323
entry_points={
24-
"console_scripts": ["convert_to_bdv = pybdv.scripts.bdv_converter:main"]
24+
"console_scripts": ["convert_to_bdv = pybdv.scripts.pybdv_converter:main"]
2525
},
2626
)

test/test_convert_to_bdv.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import h5py
88

99

10-
class TestMakeBdv(unittest.TestCase):
10+
class TestConvertToBdv(unittest.TestCase):
1111
in_path = './tmp/in.h5'
1212
out_path = './tmp/out.h5'
1313

0 commit comments

Comments
 (0)