From 90eb717a7f546c35e76c95fe24a67fab82796e33 Mon Sep 17 00:00:00 2001 From: Alokito Date: Fri, 6 Sep 2019 14:34:48 -0400 Subject: [PATCH] Updated package_data --- setup.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 5381bee..ea3e58b 100644 --- a/setup.py +++ b/setup.py @@ -20,12 +20,18 @@ setup( # mandatory author="Niket Patel, Yohann Potier, Alok Saldanha", author_email="alok.saldanha@novartis.com", - description=("Cell-by-gene Gateway"), + description=("Cellxgene Gateway"), license="MIT", keywords="visualization, genomics", url="http://github.com/Novartis/cellxgene-gateway", packages=["cellxgene_gateway"], - package_data={"": ["README.md", "LICENSE.txt"]}, + package_data={ + "cellxgene_gateway": [ + "static/css/homepagestyle.css", + "static/nibr.ico", + "templates/*.html" + ]}, + data_files=[('', ['README.md', 'LICENSE.txt'])) install_requires=install_reqs, entry_points={ "console_scripts": ["cellxgene-gateway=cellxgene_gateway.gateway:main"]