Skip to content

Commit

Permalink
gitignore extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
gwax committed May 15, 2018
1 parent 5014b61 commit bec7e8c
Showing 1 changed file with 51 additions and 7 deletions.
58 changes: 51 additions & 7 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,19 @@
/*.xlsx
/*.xlsx.bak*

# Created by https://www.gitignore.io/api/python

### Python ###
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
env/
build/
develop-eggs/
dist/
Expand All @@ -25,11 +28,10 @@ lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
.python-version
.sublimelinterrc

# PyInstaller
# Usually these files are written by a python script from a template
Expand All @@ -47,20 +49,62 @@ htmlcov/
.coverage
.coverage.*
.cache
.pytest_cache/
nosetests.xml
coverage.xml
*,cover
*.prof
*.cover
.hypothesis/

# Translations
*.mo
*.pot

# Django stuff:
*.log
# Flask stuff:
instance/
.webassets-cache

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/_build/

# PyBuilder
target/

# Jupyter Notebook
.ipynb_checkpoints

# pyenv
.python-version

# celery beat schedule file
celerybeat-schedule.*

# SageMath parsed files
*.sage.py

# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/

# Spyder project settings
.spyderproject
.spyproject

# Rope project settings
.ropeproject

# mkdocs documentation
/site

# mypy
.mypy_cache/


# End of https://www.gitignore.io/api/python

0 comments on commit bec7e8c

Please sign in to comment.