-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* added error message on no data file * added install script * removed orphics dependency * allowed changing of data dir * added pyproject from flit * added gitignore * update gitignore to boilerplate * corrected data dir global use * added pandas req * remove pandas dep (oops) * ver bump * requirements again * deps still weird * version and url * direct people to orphics
- Loading branch information
1 parent
5df396c
commit 4aa5e94
Showing
6 changed files
with
106 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
**/.DS_Store | ||
|
||
# Byte-compiled / optimized / DLL files | ||
__pycache__/ | ||
*.py[cod] | ||
|
||
# C extensions | ||
*.so | ||
|
||
# Distribution / packaging | ||
bin/ | ||
build/ | ||
develop-eggs/ | ||
dist/ | ||
eggs/ | ||
lib/ | ||
lib64/ | ||
parts/ | ||
sdist/ | ||
var/ | ||
*.egg-info/ | ||
.installed.cfg | ||
*.egg | ||
|
||
# Installer logs | ||
pip-log.txt | ||
pip-delete-this-directory.txt | ||
|
||
# Unit test / coverage reports | ||
.tox/ | ||
.coverage | ||
.cache | ||
nosetests.xml | ||
coverage.xml | ||
|
||
# Translations | ||
*.mo | ||
|
||
# Mr Developer | ||
.mr.developer.cfg | ||
.project | ||
.pydevproject | ||
|
||
# Rope | ||
.ropeproject | ||
|
||
# Django stuff: | ||
*.log | ||
*.pot | ||
|
||
# Sphinx documentation | ||
docs/_build/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#!/usr/bin/env bash | ||
|
||
# script from Joe Zuntz | ||
|
||
if [ -d act_dr6_lenslike/data/v1.1 ] | ||
then | ||
echo ACT DR6 Lensing data already downloaded | ||
elif ! command -v wget &> /dev/null | ||
then | ||
echo wget not installed. Please obtain it \(e.g. conda install wget\) to download the data. | ||
else | ||
mkdir -p act_dr6_lenslike/data | ||
pushd act_dr6_lenslike/data | ||
wget https://lambda.gsfc.nasa.gov/data/suborbital/ACT/ACT_dr6/likelihood/data/ACT_dr6_likelihood_v1.1.tgz | ||
tar -zxvf ACT_dr6_likelihood_v1.1.tgz | ||
rm ACT_dr6_likelihood_v1.1.tgz | ||
popd | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
[build-system] | ||
requires = ["flit_core >=3.2,<4"] | ||
build-backend = "flit_core.buildapi" | ||
|
||
[project] | ||
name = "act_dr6_lenslike" | ||
authors = [{name = "Mathew Madhavacheril", email = "[email protected]"}] | ||
readme = "README.md" | ||
classifiers = [ | ||
"License :: OSI Approved :: BSD License", | ||
] | ||
dynamic = ["version", "description"] | ||
dependencies = ["numpy >=1", "scipy >=1"] | ||
|
||
[project.urls] | ||
Source = "https://github.com/ACTCollaboration/act_dr6_lenslike" |