diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2018-12-04 11:08:16 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2018-12-04 11:08:16 -0500 |
commit | f6eb0f96fec2a124333381c6a80ccd4f27290a7d (patch) | |
tree | 1dc20385009169baac43a31212d9dfd5ed2b6dde /etc | |
parent | 3767b4566c124f0b7ac15352b0614d8ef94f23d1 (diff) | |
download | wheeblast-master.tar.gz |
Diffstat (limited to 'etc')
-rw-r--r-- | etc/config.sh | 57 | ||||
-rw-r--r-- | etc/dev-requirements.txt | 7 | ||||
-rw-r--r-- | etc/functions.sh | 14 | ||||
-rw-r--r-- | etc/pip.conf | 2 |
4 files changed, 80 insertions, 0 deletions
diff --git a/etc/config.sh b/etc/config.sh new file mode 100644 index 0000000..65daccd --- /dev/null +++ b/etc/config.sh @@ -0,0 +1,57 @@ +tag_limit=1 +tag_regex='^\d+\.\d+?\.?\d+$' +docker_image=quay.io/pypa/manylinux1_x86_64 +envs=( + cp37-cp37m + cp36-cp36m +) +host=https://github.com +org=spacetelescope +projects=( + acstools + asdf + astroimtools + calcos + costools + crds + cubeviz + d2to1 + drizzle + drizzlepac + fitsblender + gwcs + imexam + mirage + mosviz + nictools + pandokia + photutils + poppy + pysynphot + reftools + refstis + relic + specviz + spherical_geometry + stginga + stistools + stsci.convolve + stsci.distutils + stsci.image + stsci.imagemanip + stsci.imagestats + stsci.ndimage + stsci.numdisplay + stsci.stimage + stsci.skypac + stsci.tools + stregion + stsynphot + stwcs + synphot_refactor + verhawk + webbpsf + wfpc2tools + wfc3tools + wss_tools +) diff --git a/etc/dev-requirements.txt b/etc/dev-requirements.txt new file mode 100644 index 0000000..d1dceb9 --- /dev/null +++ b/etc/dev-requirements.txt @@ -0,0 +1,7 @@ +numpy +astropy +cython +relic +wheel +#d2to1 +#stsci.distutils diff --git a/etc/functions.sh b/etc/functions.sh new file mode 100644 index 0000000..da68c0c --- /dev/null +++ b/etc/functions.sh @@ -0,0 +1,14 @@ +function msg +{ + printf '=> %s\n' "$@" +} + +function msg2 +{ + printf '==> %s\n' "$@" +} + +function msg3 +{ + printf ' -> %s\n' "$@" +} diff --git a/etc/pip.conf b/etc/pip.conf new file mode 100644 index 0000000..03d80a8 --- /dev/null +++ b/etc/pip.conf @@ -0,0 +1,2 @@ +[global] +index-url = https://bytesalad.stsci.edu/artifactory/api/pypi/datb-pypi-virtual/simple |