We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f8da19 commit 9518f7eCopy full SHA for 9518f7e
.gitignore
@@ -1,3 +1,5 @@
1
-__pycache__/*
2
*.pyc
3
-build/*
+__pycache__/
+build/
4
+dist/
5
+*.egg-info/
setup.py
@@ -21,6 +21,6 @@
21
url='https://github.com/constantinpape/pybdv',
22
license='MIT',
23
entry_points={
24
- "console_scripts": ["convert_to_bdv = pybdv.scripts.bdv_converter:main"]
+ "console_scripts": ["convert_to_bdv = pybdv.scripts.pybdv_converter:main"]
25
},
26
)
test/test_convert_to_bdv.py
@@ -7,7 +7,7 @@
7
import h5py
8
9
10
-class TestMakeBdv(unittest.TestCase):
+class TestConvertToBdv(unittest.TestCase):
11
in_path = './tmp/in.h5'
12
out_path = './tmp/out.h5'
13
0 commit comments