Tommy Carpenter | 21f659c | 2020-02-26 14:12:54 -0500 | [diff] [blame] | 1 | # misc cruft |
| 2 | *.log |
| 3 | log.txt |
| 4 | rmr/* |
| 5 | docs_and_diagrams/ |
| 6 | |
| 7 | # documentation |
| 8 | .tox |
| 9 | docs/_build/ |
| 10 | |
| 11 | # standard python ignore template |
| 12 | .pytest_cache/ |
| 13 | xunit-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 |
| 25 | env/ |
| 26 | build/ |
| 27 | develop-eggs/ |
| 28 | dist/ |
| 29 | downloads/ |
| 30 | eggs/ |
| 31 | .eggs/ |
| 32 | lib/ |
| 33 | lib64/ |
| 34 | parts/ |
| 35 | sdist/ |
| 36 | var/ |
| 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 |
| 48 | pip-log.txt |
| 49 | pip-delete-this-directory.txt |
| 50 | |
| 51 | # Unit test / coverage reports |
| 52 | htmlcov/ |
| 53 | venv-tox/ |
| 54 | .tox/ |
| 55 | .coverage |
| 56 | .coverage.* |
| 57 | .cache |
| 58 | nosetests.xml |
| 59 | coverage.xml |
| 60 | *,cover |
| 61 | .hypothesis/ |
| 62 | |
| 63 | # Translations |
| 64 | *.mo |
| 65 | *.pot |
| 66 | |
| 67 | # Django stuff: |
| 68 | *.log |
| 69 | local_settings.py |
| 70 | |
| 71 | # Flask stuff: |
| 72 | instance/ |
| 73 | .webassets-cache |
| 74 | |
| 75 | # Scrapy stuff: |
| 76 | .scrapy |
| 77 | |
| 78 | # Sphinx documentation |
| 79 | docs/_build/ |
| 80 | |
| 81 | # PyBuilder |
| 82 | target/ |
| 83 | |
| 84 | # IPython Notebook |
| 85 | .ipynb_checkpoints |
| 86 | |
| 87 | # pyenv |
| 88 | .python-version |
| 89 | |
Lott, Christopher (cl778h) | 4e8941a | 2020-04-02 15:45:31 -0400 | [diff] [blame] | 90 | # pycharm |
| 91 | .idea |
| 92 | |
Tommy Carpenter | 21f659c | 2020-02-26 14:12:54 -0500 | [diff] [blame] | 93 | # celery beat schedule file |
| 94 | celerybeat-schedule |
| 95 | |
| 96 | # dotenv |
| 97 | .env |
| 98 | |
| 99 | # virtualenv |
| 100 | venv/ |
| 101 | ENV/ |
| 102 | |
| 103 | # Spyder project settings |
| 104 | .spyderproject |
| 105 | |
| 106 | # Rope project settings |
| 107 | .ropeproject |
| 108 | |
| 109 | # Test report |
| 110 | xunit-reports |
| 111 | coverage-reports |
Lott, Christopher (cl778h) | 2407cdc | 2020-04-29 09:58:37 -0400 | [diff] [blame] | 112 | |
| 113 | # Eclipse |
| 114 | .project |
Lott, Christopher (cl778h) | 666e831 | 2020-05-05 18:31:54 -0400 | [diff] [blame] | 115 | .pydevproject |
Lott, Christopher (cl778h) | 2407cdc | 2020-04-29 09:58:37 -0400 | [diff] [blame] | 116 | .settings/ |
Lott, Christopher (cl778h) | af8b53f | 2020-07-23 06:34:58 -0400 | [diff] [blame] | 117 | |
| 118 | # VS Code |
| 119 | .vscode/ |