.gitignore 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. # ---> Android
  2. # Built application files
  3. *.apk
  4. *.ap_
  5. # Files for the Dalvik VM
  6. *.dex
  7. # Java class files
  8. *.class
  9. # Generated files
  10. bin/
  11. gen/
  12. # Gradle files
  13. .gradle/
  14. build/
  15. # Local configuration file (sdk path, etc)
  16. local.properties
  17. # Proguard folder generated by Eclipse
  18. proguard/
  19. # Log Files
  20. *.log
  21. # Android Studio Navigation editor temp files
  22. .navigation/
  23. # Android Studio captures folder
  24. captures/
  25. # ---> Python
  26. # Byte-compiled / optimized / DLL files
  27. __pycache__/
  28. *.py[cod]
  29. *$py.class
  30. # C extensions
  31. *.so
  32. # Distribution / packaging
  33. .Python
  34. env/
  35. build/
  36. develop-eggs/
  37. dist/
  38. downloads/
  39. eggs/
  40. .eggs/
  41. lib/
  42. lib64/
  43. parts/
  44. sdist/
  45. var/
  46. *.egg-info/
  47. .installed.cfg
  48. *.egg
  49. # PyInstaller
  50. # Usually these files are written by a python script from a template
  51. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  52. *.manifest
  53. *.spec
  54. # Installer logs
  55. pip-log.txt
  56. pip-delete-this-directory.txt
  57. # Unit test / coverage reports
  58. htmlcov/
  59. .tox/
  60. .coverage
  61. .coverage.*
  62. .cache
  63. nosetests.xml
  64. coverage.xml
  65. *,cover
  66. # Translations
  67. *.mo
  68. *.pot
  69. # Django stuff:
  70. *.log
  71. # Sphinx documentation
  72. docs/_build/
  73. # PyBuilder
  74. target/