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