Commit ec0a3f5c authored by tsocha's avatar tsocha Committed by Scott Cyphers

[Py]Add version to ngraph python (#2193)

* [Py]Add version to ngraph python

* FIX
parent b77fd922
...@@ -15,6 +15,9 @@ ...@@ -15,6 +15,9 @@
# ****************************************************************************** # ******************************************************************************
"""ngraph module namespace, exposing factory functions for all ops and other classes.""" """ngraph module namespace, exposing factory functions for all ops and other classes."""
from pkg_resources import get_distribution
__version__ = get_distribution('ngraph-core').version
from ngraph.ops import absolute from ngraph.ops import absolute
from ngraph.ops import absolute as abs from ngraph.ops import absolute as abs
from ngraph.ops import acos from ngraph.ops import acos
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment