mirror of
https://github.com/wassname/scikit-image.git
synced 2026-06-29 13:49:56 +08:00
13 lines
219 B
Python
Executable File
13 lines
219 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
from __future__ import print_function
|
|
|
|
import numpy as np
|
|
import scipy as sp
|
|
import matplotlib as mpl
|
|
import six
|
|
|
|
for m in (np, sp, mpl, six):
|
|
print(m.__name__.rjust(10), ' ', m.__version__)
|
|
|