RIC:1060: Change in PTL
[ric-plt/a1.git] / .gitignore
1 # misc cruft
2 *.log
3 log.txt
4 integration_tests/log.txt
5 NOTES.txt
6 rmr/*
7 docs_and_diagrams/
8
9 # documentation
10 .tox
11 docs/_build/
12
13 # standard python ignore template
14 .pytest_cache/
15 xunit-results.xml
16 .DS_Store
17 # Byte-compiled / optimized / DLL files
18 __pycache__/
19 *.py[cod]
20 *$py.class
21
22 # C extensions
23 *.so
24
25 # Distribution / packaging
26 .Python
27 env/
28 build/
29 develop-eggs/
30 dist/
31 downloads/
32 eggs/
33 .eggs/
34 lib/
35 lib64/
36 parts/
37 sdist/
38 var/
39 *.egg-info/
40 .installed.cfg
41 *.egg
42
43 # PyInstaller
44 #  Usually these files are written by a python script from a template
45 #  before PyInstaller builds the exe, so as to inject date/other infos into it.
46 *.manifest
47 *.spec
48
49 # Installer logs
50 pip-log.txt
51 pip-delete-this-directory.txt
52
53 # Unit test / coverage reports
54 htmlcov/
55 venv-tox/
56 .tox/
57 .coverage
58 .coverage.*
59 .cache
60 nosetests.xml
61 coverage.xml
62 *,cover
63 .hypothesis/
64
65 # Translations
66 *.mo
67 *.pot
68
69 # Django stuff:
70 *.log
71 local_settings.py
72
73 # Flask stuff:
74 instance/
75 .webassets-cache
76
77 # Scrapy stuff:
78 .scrapy
79
80 # Sphinx documentation
81 docs/_build/
82
83 # PyBuilder
84 target/
85
86 # IPython Notebook
87 .ipynb_checkpoints
88
89 # pyenv
90 .python-version
91
92 # celery beat schedule file
93 celerybeat-schedule
94
95 # dotenv
96 .env
97
98 # virtualenv
99 venv/
100 ENV/
101
102 # Spyder project settings
103 .spyderproject
104
105 # Rope project settings
106 .ropeproject
107
108 # Test report
109 xunit-reports
110 coverage-reports
111
112 # Eclipse
113 .project
114 .pydevproject
115 .settings/