From 65af8fc4ac2373fa0acc935e7994345b56c03e0c Mon Sep 17 00:00:00 2001 From: Serge Rey Date: Sun, 30 Jun 2019 08:43:40 -0700 Subject: [PATCH] DOC: style sheet update and adding Smaup to __init__ --- doc/_static/pysal-styles.css | 11 ++++++++++- esda/__init__.py | 1 + esda/smaup.py | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/doc/_static/pysal-styles.css b/doc/_static/pysal-styles.css index 6633c2a5..0b807689 100644 --- a/doc/_static/pysal-styles.css +++ b/doc/_static/pysal-styles.css @@ -70,4 +70,13 @@ /* Table with a scrollbar */ .bodycontainer { max-height: 600px; width: 100%; margin: 0; overflow-y: auto; } -.table-scrollable { margin: 0; padding: 0; } \ No newline at end of file +.table-scrollable { margin: 0; padding: 0; } + +.label { + color: #ff0000; + /*font-size: 100%;*/ +} + +div.body { + max-width: 1080px; +} diff --git a/esda/__init__.py b/esda/__init__.py index 0fd69954..066a8fb6 100644 --- a/esda/__init__.py +++ b/esda/__init__.py @@ -18,3 +18,4 @@ from .join_counts import Join_Counts from .gamma import Gamma from .util import fdr +from .smaup import Smaup diff --git a/esda/smaup.py b/esda/smaup.py index 880432ee..460f8389 100644 --- a/esda/smaup.py +++ b/esda/smaup.py @@ -9,7 +9,7 @@ import numpy as np from scipy.interpolate import interp1d -__all__ = ["testSmaup"] +__all__ = ["Smaup"] class Smaup(object):