-
Notifications
You must be signed in to change notification settings - Fork 2
/
.gitignore
49 lines (41 loc) · 933 Bytes
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# Directories created by notebooks to store data, results, etc.
# "data" dir to store any data that is downloaded or otherwise needs to be made available to the notebook
data/
# "output" dir used to store results, figures, logs, etc.
output/
# "cache" dir is created by nway in the forced photometry notebook. ignore it and any other "cache" directory
cache/
# Data and Output files
# data and output files should not be committed to the code repository
# these files *should* end up in one of the directories listed above and thus already ignored
# but we list them explicitly here in case they end up in a different directory
*.bz2
*.csv
*.ecsv
*.fits
*.gzip
*.jpg
*.jpeg
*.log
*.parquet
*.pdf
*.png
# Tests and reports
htmlcov/
.tox/
.pytest_cache/
.cache
# Jupyter Notebook and sphinx renderings
.ipynb_checkpoints
*.ipynb
_build/
# PyCharm
.idea
# Mac OSX
.DS_Store
# PyCharm
.idea
# VSCode
.vscode
#pycache
__pycache__