9 lines
126 B
Python
9 lines
126 B
Python
# tifffile/__main__.py
|
|
|
|
"""Tifffile package command line script."""
|
|
|
|
import sys
|
|
|
|
from .tifffile import main
|
|
|
|
sys.exit(main())
|