From 0b25757b7644f532a23320ee9480f352ab657473 Mon Sep 17 00:00:00 2001 From: Justin Bois Date: Fri, 24 Aug 2018 14:19:06 -0700 Subject: [PATCH] Deleted superfluous file. --- __init__.py | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 __init__.py diff --git a/__init__.py b/__init__.py deleted file mode 100644 index 408564e..0000000 --- a/__init__.py +++ /dev/null @@ -1,33 +0,0 @@ -# -*- coding: utf-8 -*- - -"""Top-level package for bebi103.""" - -# Force showing deprecation warnings. -import re -import warnings -warnings.filterwarnings('always', - category=DeprecationWarning, - module='^{}\.'.format(re.escape(__name__))) - -from . import viz - -from . import image - -try: - from . import pm -except: - warnings.warn('Count not import `pm` submodule. Perhaps PyMC3 and/or Theano are not properly installed.') - -try: - from . import tools -except: - pass - -try: - from . import emcee -except: - pass - -__author__ = """Justin Bois""" -__email__ = 'bois@caltech.edu' -__version__ = '0.0.22'