.gitignore 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. .DS_Store
  2. .AppleDouble
  3. .LSOverride
  4. # Icon must end with two \r
  5. Icon
  6. # Thumbnails
  7. ._*
  8. # Files that might appear in the root of a volume
  9. .DocumentRevisions-V100
  10. .fseventsd
  11. .Spotlight-V100
  12. .TemporaryItems
  13. .Trashes
  14. .VolumeIcon.icns
  15. # Directories potentially created on remote AFP share
  16. .AppleDB
  17. .AppleDesktop
  18. Network Trash Folder
  19. Temporary Items
  20. .apdisk
  21. # Byte-compiled / optimized / DLL files
  22. __pycache__/
  23. *.py[cod]
  24. *$py.class
  25. # C extensions
  26. *.so
  27. # Distribution / packaging
  28. .Python
  29. env/
  30. build/
  31. develop-eggs/
  32. dist/
  33. downloads/
  34. eggs/
  35. .eggs/
  36. lib/
  37. lib64/
  38. parts/
  39. sdist/
  40. var/
  41. *.egg-info/
  42. .installed.cfg
  43. *.egg
  44. # PyInstaller
  45. # Usually these files are written by a python script from a template
  46. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  47. *.manifest
  48. *.spec
  49. # Installer logs
  50. pip-log.txt
  51. pip-delete-this-directory.txt
  52. # Unit test / coverage reports
  53. htmlcov/
  54. .tox/
  55. .coverage
  56. .coverage.*
  57. .cache
  58. nosetests.xml
  59. coverage.xml
  60. *,cover
  61. # Translations
  62. *.mo
  63. *.pot
  64. # Django stuff:
  65. *.log
  66. # Sphinx documentation
  67. docs/_build/
  68. # PyBuilder
  69. target/