Skip to content

Commit

Permalink
Deprecate repository DataBiosphere/azul#2897 (#526)
Browse files Browse the repository at this point in the history
  • Loading branch information
amarjandu authored Mar 30, 2021
1 parent 330caa6 commit 0ea33aa
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
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 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>`_

HCA CLI
=======
This repository is a pip installable Command Line Interface (CLI) and Python library (API) for interacting with the
Expand Down
4 changes: 2 additions & 2 deletions common.mk
Original file line number Diff line number Diff line change
Expand Up @@ -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
8 changes: 8 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"))]

Expand Down

0 comments on commit 0ea33aa

Please sign in to comment.