-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
33 lines (26 loc) · 851 Bytes
/
.gitignore
File metadata and controls
33 lines (26 loc) · 851 Bytes
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
# Sphinx documentation - this is built if you're running the pipeline locally and you don't want it popping up
# in the list of possible commits
docs/_build/
# Documentation will automatically be pushed to the repository via the GitLab pipeline, no need to push any local
# documentation from Sphinx
/docs/*.rst
/docs/_autosummary
/public
# MAC OS garbage
*.DS_STORE
# When running local testing, this gets generated
/.pytest_cache
*.coverage*
# PyCharm, used by the USGS PyHAT developers, generates this folder in the repository, but it doesn't need to be tracked
/.idea
# Ignore example data input and result files
/libpyhat/examples/LIBS/*.csv
/libpyhat/examples/LIBS/*.png
/libpyhat/examples/LIBS/*.tram
/libpyhat/examples/Kaguya_SP/*.csv
/libpyhat/examples/Kaguya_SP/*.png
/libpyhat/examples/Iris/*.csv
# Ignore output
/Output
*.pyc
*.png