diff options
author | Rich Bennett <rb2745@att.com> | 2017-07-26 17:31:54 -0400 |
---|---|---|
committer | Rich Bennett <rb2745@att.com> | 2017-07-26 17:35:23 -0400 |
commit | a52a572b3401c86116fa014dd4249d06e54c976c (patch) | |
tree | c7ea18f7e628200bd73efcd7cd93cc7abfaf1afa /.gitignore | |
parent | d1f094919f1558d05f5aa72e209ad9359135bcf4 (diff) |
[DOC-10][DOC-27] Updates to gitmodule and gitignore
Change-Id: Iea5db426b9a9ca46acd9db25f2ea8d9816ec63ad
Signed-off-by: Rich Bennett <rb2745@att.com>
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000..7e6c5ab69 --- /dev/null +++ b/.gitignore @@ -0,0 +1,66 @@ +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# C extensions +*.so + +# Distribution / packaging +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +*.egg-info/ +.installed.cfg +*.egg + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +.hypothesis/ + +# Django: +*.log +local_settings.py + +# Flask: +instance/ +.webassets-cache + +# Scrapy: +.scrapy + +# Sphinx documentation +docs/_build/ + +# PyBuilder +target/ + +# pyenv +.python-version |