diff --git a/setup.py b/setup.py index 7e2787b..fadcdcc 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,6 @@ import os from setuptools import setup - def parse_requirements(): reqs = [] with open("requirements.txt", "r") as f: @@ -9,6 +8,8 @@ def parse_requirements(): reqs.append(l.strip("\n")) return reqs +with open("README.md", "r") as fh: + long_description = fh.read() install_reqs = parse_requirements() @@ -16,11 +17,13 @@ setup( # mandatory name="cellxgene-gateway", # mandatory - version="0.1", + version="0.1.0", # mandatory author="Niket Patel, Yohann Potier, Alok Saldanha", author_email="alok.saldanha@novartis.com", description=("Cellxgene Gateway"), + long_description=long_description, + long_description_content_type="text/markdown", license="MIT", keywords="visualization, genomics", url="http://github.com/Novartis/cellxgene-gateway", @@ -37,4 +40,5 @@ setup( "console_scripts": ["cellxgene-gateway=cellxgene_gateway.gateway:main"] }, classifiers=["Topic :: Scientific/Engineering :: Visualization"], + python_requires='>=3.6', )