File: __init__.py

package info (click to toggle)
matplotlib-inline 0.2.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 256 kB
  • sloc: python: 223; makefile: 4
file content (8 lines) | stat: -rw-r--r-- 316 bytes parent folder | download
1
2
3
4
5
6
7
8
from . import backend_inline, config  # noqa

__version__ = "0.2.1"

# we can't ''.join(...) otherwise finding the version number at build time requires
# import which introduces IPython and matplotlib at build time, and thus circular
# dependencies.
version_info = tuple(int(s) for s in __version__.split(".")[:3])