Commit 3d67945f575503ee47b8cf01f439fd0d4564c436

Authored by Taras Kozlovskyi
0 parents

Added git ignore

Showing 1 changed file with 58 additions and 0 deletions
  1 +# Byte-compiled / optimized / DLL files
  2 +__pycache__/
  3 +*.py[cod]
  4 +
  5 +# C extensions
  6 +*.so
  7 +
  8 +# Distribution / packaging
  9 +.Python
  10 +env/
  11 +etc/
  12 +build/
  13 +develop-eggs/
  14 +dist/
  15 +downloads/
  16 +eggs/
  17 +lib/
  18 +lib64/
  19 +parts/
  20 +sdist/
  21 +var/
  22 +*.egg-info/
  23 +.installed.cfg
  24 +*.egg
  25 +bin/*
  26 +src/*
  27 +
  28 +# PyInstaller
  29 +# Usually these files are written by a python script from a template
  30 +# before PyInstaller builds the exe, so as to inject date/other infos into it.
  31 +*.manifest
  32 +*.spec
  33 +
  34 +# Installer logs
  35 +pip-log.txt
  36 +pip-delete-this-directory.txt
  37 +
  38 +# Unit test / coverage reports
  39 +htmlcov/
  40 +.tox/
  41 +.coverage
  42 +.cache
  43 +nosetests.xml
  44 +coverage.xml
  45 +
  46 +# Translations
  47 +*.mo
  48 +*.pot
  49 +
  50 +# Django stuff:
  51 +*.log
  52 +
  53 +# Sphinx documentation
  54 +docs/_build/
  55 +
  56 +# PyBuilder
  57 +target/
  58 +.mr.developer.cfg
\ No newline at end of file
... ...
Please register or login to post a comment