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