diff --git a/MANIFEST.in b/MANIFEST.in index 2bd695e5d332c..9941af47a18a6 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,2 +1,4 @@ recursive-include panoramix/templates * recursive-include panoramix/static * +recursive-include panoramix/data * +recursive-include panoramix/migrations * diff --git a/panoramix/templates/index.html b/panoramix/templates/index.html index 329a391a534d9..417cafdc45950 100644 --- a/panoramix/templates/index.html +++ b/panoramix/templates/index.html @@ -6,10 +6,14 @@ .carousel img { max-height: 500px; } - .carousel-caption{ + .carousel { + overflow: hidden; + } + div.carousel-caption{ background: rgba(0,0,0,0.5); - border-radius: 20px; - margin-bottom: 100px; + border-radius: 20px; + top: 150px; + bottom: auto !important; } .carousel-inner > .item > img { margin: 0 auto; @@ -37,6 +41,7 @@
  • +
  • @@ -77,6 +82,17 @@

    Extend

    Join the community and take part in extending the widget library

    +
    + + +
    diff --git a/requirements.txt b/requirements.txt index 1dcd911eb5cb2..9d3a44349a028 100644 --- a/requirements.txt +++ b/requirements.txt @@ -4,6 +4,7 @@ flask-appbuilder gunicorn markdown mysql-python +nose pandas parsedatetime pydruid diff --git a/setup.py b/setup.py index d6f67ee6fc5a4..1ef637935bf89 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,10 @@ "and druid.io"), version=version, packages=find_packages(), - package_data={'': ['panoramix/migrations/alembic.ini']}, + package_data={'': [ + 'panoramix/migrations/alembic.ini', + 'panoramix/data/birth_names.csv.gz', + ]}, include_package_data=True, zip_safe=False, scripts=['panoramix/bin/panoramix'],