From 159ef14fb9e198bb0066ea14e6b980f065de63dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Picca=20Fr=C3=A9d=C3=A9ric-Emmanuel?= Date: Tue, 31 Jul 2018 16:22:25 +0200 Subject: New upstream version 0.8.0+dfsg --- silx/__init__.py | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) (limited to 'silx/__init__.py') diff --git a/silx/__init__.py b/silx/__init__.py index 8dab7e1..2892572 100644 --- a/silx/__init__.py +++ b/silx/__init__.py @@ -1,7 +1,7 @@ # coding: utf-8 # /*########################################################################## # -# Copyright (c) 2015-2017 European Synchrotron Radiation Facility +# Copyright (c) 2015-2018 European Synchrotron Radiation Facility # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -22,16 +22,31 @@ # THE SOFTWARE. # # ###########################################################################*/ +"""The silx package contains the following main sub-packages: + +- silx.gui: Qt widgets for data visualization and data file browsing +- silx.image: Some processing functions for 2D images +- silx.io: Reading and writing data files (HDF5/NeXus, SPEC, ...) +- silx.math: Some processing functions for 1D, 2D, 3D, nD arrays +- silx.opencl: OpenCL-based data processing +- silx.sx: High-level silx functions suited for (I)Python console. +- silx.utils: Miscellaneous convenient functions + +See silx documentation: http://www.silx.org/doc/silx/latest/ +""" from __future__ import absolute_import, print_function, division __authors__ = ["Jérôme Kieffer"] __license__ = "MIT" -__date__ = "23/05/2016" +__date__ = "26/04/2018" import os as _os import logging as _logging +from ._config import Config as _Config +config = _Config() +"""Global configuration shared with the whole library""" # Attach a do nothing logging handler for silx _logging.getLogger(__name__).addHandler(_logging.NullHandler()) -- cgit v1.2.3