Skip to content

Commit

Permalink
Deprecate repository DataBiosphere/azul#2897
Browse files Browse the repository at this point in the history
  • Loading branch information
amarjandu committed Mar 23, 2021
1 parent 330caa6 commit 85d4b0f
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
4 changes: 4 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
DEPRECATED
==========
This repository is deprecated, for assistance with accessing data please refer to the `data-browser quick start guide. <https://data.humancellatlas.org/guides/quick-start-guide>`_

HCA CLI
=======
This repository is a pip installable Command Line Interface (CLI) and Python library (API) for interacting with the
Expand Down
2 changes: 1 addition & 1 deletion common.mk
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,6 @@ release:

pypi_release:
python setup.py sdist bdist_wheel
twine upload dist/*.tar.gz dist/*.whl --sign --verbose
twine upload dist/*.tar.gz --verbose

.PHONY: release
7 changes: 7 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

import os
from setuptools import setup, find_packages
import sys

if not any(arg in sys.argv for arg in ('sdist', 'bdist_wheel', '--name', '--version')):
sys.exit('\nThe HCA module is deprecated, for assistance with accessing data '
'please refer to the data-browser quick start guide at '
'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"))]

Expand Down

0 comments on commit 85d4b0f

Please sign in to comment.