From 42a173830b9f47868e7b08f0c7474699ecbe05b6 Mon Sep 17 00:00:00 2001 From: Aaron LI Date: Mon, 22 May 2017 14:21:47 +0800 Subject: Add new dependence "astropy/regions" from GitHub Credit: * Adding git (or hg, or svn) dependencies in setup.py (Python) https://mike.zwobble.org/2013/05/adding-git-or-hg-or-svn-dependencies-in-setup-py/ * Python Dependencies via Pip https://devcenter.heroku.com/articles/python-pip --- requirements.txt | 1 + setup.py | 3 +++ 2 files changed, 4 insertions(+) diff --git a/requirements.txt b/requirements.txt index 8d240fc..5a92337 100644 --- a/requirements.txt +++ b/requirements.txt @@ -8,3 +8,4 @@ configobj beautifulsoup4 requests tornado +git+https://github.com/astropy/regions.git diff --git a/setup.py b/setup.py index 6b0feb2..626dbb0 100755 --- a/setup.py +++ b/setup.py @@ -96,6 +96,9 @@ setup( "requests", "tornado", ], + dependency_links=[ + "git+https://github.com/astropy/regions.git", + ], tests_require=["pytest"], cmdclass={"test": PyTest}, ) -- cgit v1.2.2