Skip to content

Commit 0ea33aa

Browse files
authored
Deprecate repository DataBiosphere/azul#2897 (#526)
1 parent 330caa6 commit 0ea33aa

3 files changed

Lines changed: 14 additions & 2 deletions

File tree

README.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
DEPRECATED
2+
==========
3+
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>`_
4+
15
HCA CLI
26
=======
37
This repository is a pip installable Command Line Interface (CLI) and Python library (API) for interacting with the

common.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ release:
4646
$(MAKE) pypi_release
4747

4848
pypi_release:
49-
python setup.py sdist bdist_wheel
50-
twine upload dist/*.tar.gz dist/*.whl --sign --verbose
49+
python setup.py sdist
50+
twine upload dist/*.tar.gz --verbose
5151

5252
.PHONY: release

setup.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
import os
44
from setuptools import setup, find_packages
5+
import sys
6+
7+
if set(sys.argv).isdisjoint({'sdist', 'bdist_wheel', '--name', '--version'}):
8+
sys.exit('\nThis repository has been deprecated. For information about '
9+
'accessing Human Cell Atlas data please refer to the '
10+
'`Data Browser quick start guide. '
11+
'https://data.humancellatlas.org/guides/quick-start-guide`\n')
12+
513

614
install_requires = [line.rstrip() for line in open(os.path.join(os.path.dirname(__file__), "requirements.txt"))]
715

0 commit comments

Comments
 (0)