From 56ab3bb747290d81af446dc1103bdafb055f2e73 Mon Sep 17 00:00:00 2001 From: amar jandu Date: Tue, 23 Mar 2021 10:16:37 -0700 Subject: [PATCH] Deprecate repository databiosphere/azul#2897 --- README.rst | 4 ++++ common.mk | 4 ++-- setup.py | 8 ++++++++ 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index db781605..7a54824d 100644 --- a/README.rst +++ b/README.rst @@ -1,3 +1,7 @@ +DEPRECATED +========== +This repository has been deprecated. For information about accessing Human Cell Atlas data please refer to the `Data Browser quick start guide. `_ + HCA CLI ======= This repository is a pip installable Command Line Interface (CLI) and Python library (API) for interacting with the diff --git a/common.mk b/common.mk index 2a61bf78..4f3b87b1 100644 --- a/common.mk +++ b/common.mk @@ -46,7 +46,7 @@ release: $(MAKE) pypi_release pypi_release: - python setup.py sdist bdist_wheel - twine upload dist/*.tar.gz dist/*.whl --sign --verbose + python setup.py sdist + twine upload dist/*.tar.gz --verbose .PHONY: release diff --git a/setup.py b/setup.py index 742efaad..6c4b0eb6 100755 --- a/setup.py +++ b/setup.py @@ -2,6 +2,14 @@ import os from setuptools import setup, find_packages +import sys + +if set(sys.argv).isdisjoint({'sdist', 'bdist_wheel', '--name', '--version'}): + sys.exit('\nThis repository has been deprecated. For information about ' + 'accessing Human Cell Atlas data please refer to the ' + '`Data Browser quick start guide. ' + 'https://data.humancellatlas.org/guides/quick-start-guide`\n') + install_requires = [line.rstrip() for line in open(os.path.join(os.path.dirname(__file__), "requirements.txt"))]