File: __init__.py

package info (click to toggle)
python-libpyvinyl 1.2.0-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,020 kB
  • sloc: python: 3,213; makefile: 11
file content (16 lines) | stat: -rw-r--r-- 584 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
""" :module: Exposes all user facing classes in the common libpyvinyl namespace"""
__author__ = "Carsten Fortmann-Grote, Mads Bertelsen, Juncheng E, Shervin Nourbakhsh"
__email__ = "carsten.grote@xfel.eu, juncheng.e@xfel.eu, Mads.Bertelsen@ess.eu, nourbakhsh@ill.fr"
__version__ = "1.2.0"
__release__ = __version__

from .BaseCalculator import BaseCalculator, CalculatorParameters
from .BaseData import BaseData
from .Parameters.Parameter import Parameter
from .Instrument import Instrument

# 3rd party imports
from pint import UnitRegistry

ureg = UnitRegistry()
Q_ = ureg.Quantity