.gitignore 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. # Byte-compiled / optimized / DLL files
  2. __pycache__/
  3. *.py[cod]
  4. *$py.class
  5. .idea
  6. # C extensions
  7. *.so
  8. # Distribution / packaging
  9. .Python
  10. env/
  11. myenv/
  12. build/
  13. develop-eggs/
  14. dist/
  15. downloads/
  16. eggs/
  17. .eggs/
  18. lib/
  19. lib64/
  20. parts/
  21. sdist/
  22. var/
  23. *.egg-info/
  24. .installed.cfg
  25. *.egg
  26. # PyInstaller
  27. # Usually these files are written by a python script from a template
  28. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  29. *.manifest
  30. *.spec
  31. # Installer logs
  32. pip-log.txt
  33. pip-delete-this-directory.txt
  34. # Unit test / coverage reports
  35. htmlcov/
  36. .tox/
  37. .coverage
  38. .coverage.*
  39. .cache
  40. nosetests.xml
  41. coverage.xml
  42. *,cover
  43. .hypothesis/
  44. # Translations
  45. *.mo
  46. *.pot
  47. *.po~
  48. # Django stuff:
  49. *.log
  50. local_settings.py
  51. # Flask stuff:
  52. instance/
  53. .webassets-cache
  54. # Scrapy stuff:
  55. .scrapy
  56. # Sphinx documentation
  57. docs/_build/
  58. # PyBuilder
  59. target/
  60. # IPython Notebook
  61. .ipynb_checkpoints
  62. # pyenv
  63. .python-version
  64. # celery beat schedule file
  65. celerybeat-schedule
  66. # dotenv
  67. .env
  68. # virtualenv
  69. venv/
  70. ENV/
  71. # Spyder project settings
  72. .spyderproject
  73. # Rope project settings
  74. .ropeproject
  75. #2to3 files
  76. *.bak
  77. #patch outputs
  78. *.orig
  79. *.rej
  80. #vi & vim swaps
  81. *.swp
  82. *.swo
  83. #For helloworld
  84. .deps/
  85. CMakeCache.txt
  86. CMakeFiles/
  87. *.cmake
  88. config/inary.conf
  89. *.py___jb_tmp___
  90. # inary files
  91. *.inary
  92. MANIFEST
  93. .config