Skip to content

Commit

Permalink
Adding gitignore, removing temp files
Browse files Browse the repository at this point in the history
  • Loading branch information
halflearned committed Aug 28, 2019
1 parent 15d8479 commit 83e513a
Show file tree
Hide file tree
Showing 4 changed files with 82 additions and 1 deletion.
Binary file removed .DS_Store
Binary file not shown.
81 changes: 81 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
# AWS keys
**.pem

# Data files (not to be put online)
**.csv
**.tsv
**.h5
**.5
**.json

# Pytest stuff
**/.pytest_cache/**

# Image files and documentation.
**.ai
**.jpg
**.png
**.tiff
**.pdf


# Python.
__pycache__/
/.venv
/venv/
ENV/
.env
env/
dist/
eggs/
.eggs/
*.egg-info/
*.egg
*.pyc
docs/build
docs/source/savefig


# Jupyter.
.ipynb_checkpoints/


# Tex files.
*.log
*.aux
*.synctex*
*.fdb_latexmk
*.out
*.toc
*.fls
*.bbl
*.blg


# PyCharm.
.idea/
scratch/


# R projects.
.R*


# Large files.
**.zip


# Metadata files.
.DS_Store

# Vim-generated files.
*.swp
*~
*.pkl

# Misc
tmp_*
*.e[0-9]
*.o[0-9]
*_out
.Rproj.user
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ To install this package, run the following commands in R:

```r
library(devtools)
install_github(grf-labs/sufrep)
install_github("grf-labs/sufrep")
```

Example usage:
Expand Down
Binary file removed scripts/.DS_Store
Binary file not shown.

0 comments on commit 83e513a

Please sign in to comment.