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"]