File: __init__.py

package info (click to toggle)
python-bayespy 0.6.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,132 kB
  • sloc: python: 22,402; makefile: 156
file content (20 lines) | stat: -rw-r--r-- 552 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
################################################################################
# Copyright (C) 2011-2016 Jaakko Luttinen
#
# This file is licensed under the MIT License.
################################################################################

from . import utils
from . import inference
from . import nodes

try:
    from . import plot
except ImportError:
    # Matplotlib not available
    pass

from ._meta import __author__, __copyright__, __contact__, __license__

from . import _version
__version__ = _version.get_versions()['version']