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