diff options
author | Aaron LI <aly@aaronly.me> | 2017-07-20 23:39:58 +0800 |
---|---|---|
committer | Aaron LI <aly@aaronly.me> | 2017-07-20 23:39:58 +0800 |
commit | e81dc098d5c00e4b26cef44b4dc3651097d57041 (patch) | |
tree | c933eeec925097caa8cdf92e95079c522ea92476 | |
parent | 035ea941c2a7916b46de9cf6b751b661b04cc5d2 (diff) | |
download | fg21sim-e81dc098d5c00e4b26cef44b4dc3651097d57041.tar.bz2 |
Add missing requirement "reproject"
Also works with Python 3.6 (basic tests at the moment)
Signed-off-by: Aaron LI <aly@aaronly.me>
-rw-r--r-- | requirements.txt | 1 | ||||
-rwxr-xr-x | setup.py | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/requirements.txt b/requirements.txt index 5a92337..0833028 100644 --- a/requirements.txt +++ b/requirements.txt @@ -8,4 +8,5 @@ configobj beautifulsoup4 requests tornado +reproject git+https://github.com/astropy/regions.git @@ -68,6 +68,7 @@ setup( "Programming Language :: Python :: 3 :: Only", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", "Topic :: Scientific/Engineering :: Astronomy", ], packages=find_packages(exclude=["docs", "tests"]), @@ -87,6 +88,7 @@ setup( "beautifulsoup4", "requests", "tornado", + "reproject", ], dependency_links=[ "git+https://github.com/astropy/regions.git", |