diff options
| author | Monty Taylor <mordred@inaugust.com> | 2016-10-13 10:39:41 -0500 |
|---|---|---|
| committer | Monty Taylor <mordred@inaugust.com> | 2016-10-13 10:39:41 -0500 |
| commit | 644d93f4d632c302cc8cd8ef5c465acfa4e478d5 (patch) | |
| tree | f1fae88cdafc423137507b1a8c0f16051d6b7c2a /.gitignore | |
Initial Cookiecutter Commit.
Diffstat (limited to '.gitignore')
| -rw-r--r-- | .gitignore | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..963e589 --- /dev/null +++ b/.gitignore | |||
| @@ -0,0 +1,58 @@ | |||
| 1 | *.py[cod] | ||
| 2 | |||
| 3 | # C extensions | ||
| 4 | *.so | ||
| 5 | |||
| 6 | # Packages | ||
| 7 | *.egg* | ||
| 8 | *.egg-info | ||
| 9 | dist | ||
| 10 | build | ||
| 11 | eggs | ||
| 12 | parts | ||
| 13 | bin | ||
| 14 | var | ||
| 15 | sdist | ||
| 16 | develop-eggs | ||
| 17 | .installed.cfg | ||
| 18 | lib | ||
| 19 | lib64 | ||
| 20 | |||
| 21 | # Installer logs | ||
| 22 | pip-log.txt | ||
| 23 | |||
| 24 | # Unit test / coverage reports | ||
| 25 | cover/ | ||
| 26 | .coverage* | ||
| 27 | !.coveragerc | ||
| 28 | .tox | ||
| 29 | nosetests.xml | ||
| 30 | .testrepository | ||
| 31 | .venv | ||
| 32 | |||
| 33 | # Translations | ||
| 34 | *.mo | ||
| 35 | |||
| 36 | # Mr Developer | ||
| 37 | .mr.developer.cfg | ||
| 38 | .project | ||
| 39 | .pydevproject | ||
| 40 | |||
| 41 | # Complexity | ||
| 42 | output/*.html | ||
| 43 | output/*/index.html | ||
| 44 | |||
| 45 | # Sphinx | ||
| 46 | doc/build | ||
| 47 | |||
| 48 | # pbr generates these | ||
| 49 | AUTHORS | ||
| 50 | ChangeLog | ||
| 51 | |||
| 52 | # Editors | ||
| 53 | *~ | ||
| 54 | .*.swp | ||
| 55 | .*sw? | ||
| 56 | |||
| 57 | # Files created by releasenotes build | ||
| 58 | releasenotes/build \ No newline at end of file | ||
