mirror of
https://github.com/Novartis/cellxgene-gateway.git
synced 2026-09-15 12:47:59 +08:00
spruce up setup.py
Mark version 0.1.0 Add python_requires add long_description
This commit is contained in:
8
setup.py
8
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',
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user