diff options
author | rr929y <rr929y@att.com> | 2017-07-24 16:58:56 -0500 |
---|---|---|
committer | rr929y <rr929y@att.com> | 2017-07-25 08:28:23 -0500 |
commit | 0ac8f52204d571ccd5a98af0e211bd138ceac846 (patch) | |
tree | fb629bfe252cb73939e8df36992e89f2a33d6662 /.gitignore | |
parent | 29e4e988c22205057846596f334b78bde8270bc9 (diff) |
RST Seed Documentation
Inital example of converted documentation to be used in the document build tool chain
Change-Id: I7b03499d3562857569e1db132f797846cc500634
Issue-ID: VNFRQTS-15
Signed-off-by: rr929y <rr929y@att.com>
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 103 |
1 files changed, 103 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b87392a --- /dev/null +++ b/.gitignore @@ -0,0 +1,103 @@ +# 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/ + +# Translations +*.mo +*.pot + +# Django: +*.log +local_settings.py + +# Flask: +instance/ +.webassets-cache + +# Scrapy: +.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/ + +# Spyder project settings +.spyderproject +.spyproject + +# Rope project settings +.ropeproject + +# mkdocs documentation +/site + +# mypy +.mypy_cache/ + +# test-procedure +docs/conf.py +Makefile
\ No newline at end of file |