diff options
| author | Aaron LI <aaronly.me@outlook.com> | 2017-05-22 14:21:47 +0800 | 
|---|---|---|
| committer | Aaron LI <aaronly.me@outlook.com> | 2017-05-22 14:21:47 +0800 | 
| commit | 42a173830b9f47868e7b08f0c7474699ecbe05b6 (patch) | |
| tree | 2a0a533d27fc4f253ef0b28c86c13763ac3719ae | |
| parent | d2c9dd2601d312077c11ca0a36ef02429b1bfbfc (diff) | |
| download | fg21sim-42a173830b9f47868e7b08f0c7474699ecbe05b6.tar.bz2 | |
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
| -rw-r--r-- | requirements.txt | 1 | ||||
| -rwxr-xr-x | setup.py | 3 | 
2 files changed, 4 insertions, 0 deletions
| 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 @@ -96,6 +96,9 @@ setup(          "requests",          "tornado",      ], +    dependency_links=[ +        "git+https://github.com/astropy/regions.git", +    ],      tests_require=["pytest"],      cmdclass={"test": PyTest},  ) | 
