Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Deprecate repository #526

Merged
merged 1 commit into from
Mar 30, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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