.gitignore 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. ### Custom ###
  2. package/
  3. function.zip
  4. node_modules/
  5. # Created by https://www.gitignore.io/api/python,virtualenv
  6. # Edit at https://www.gitignore.io/?templates=python,virtualenv
  7. ### Python ###
  8. # Byte-compiled / optimized / DLL files
  9. __pycache__/
  10. *.py[cod]
  11. *$py.class
  12. # C extensions
  13. *.so
  14. # Distribution / packaging
  15. .Python
  16. build/
  17. develop-eggs/
  18. dist/
  19. downloads/
  20. eggs/
  21. .eggs/
  22. lib/
  23. lib64/
  24. parts/
  25. sdist/
  26. var/
  27. wheels/
  28. pip-wheel-metadata/
  29. share/python-wheels/
  30. *.egg-info/
  31. .installed.cfg
  32. *.egg
  33. MANIFEST
  34. # PyInstaller
  35. # Usually these files are written by a python script from a template
  36. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  37. *.manifest
  38. *.spec
  39. # Installer logs
  40. pip-log.txt
  41. pip-delete-this-directory.txt
  42. # Unit test / coverage reports
  43. htmlcov/
  44. .tox/
  45. .nox/
  46. .coverage
  47. .coverage.*
  48. .cache
  49. nosetests.xml
  50. coverage.xml
  51. *.cover
  52. .hypothesis/
  53. .pytest_cache/
  54. # Translations
  55. *.mo
  56. *.pot
  57. # Scrapy stuff:
  58. .scrapy
  59. # Sphinx documentation
  60. docs/_build/
  61. # PyBuilder
  62. target/
  63. # pyenv
  64. .python-version
  65. # pipenv
  66. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  67. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  68. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  69. # install all needed dependencies.
  70. #Pipfile.lock
  71. # celery beat schedule file
  72. celerybeat-schedule
  73. # SageMath parsed files
  74. *.sage.py
  75. # Spyder project settings
  76. .spyderproject
  77. .spyproject
  78. # Rope project settings
  79. .ropeproject
  80. # Mr Developer
  81. .mr.developer.cfg
  82. .project
  83. .pydevproject
  84. # mkdocs documentation
  85. /site
  86. # mypy
  87. .mypy_cache/
  88. .dmypy.json
  89. dmypy.json
  90. # Pyre type checker
  91. .pyre/
  92. ### VirtualEnv ###
  93. # Virtualenv
  94. # http://iamzed.com/2009/05/07/a-primer-on-virtualenv/
  95. pyvenv.cfg
  96. .env
  97. .venv
  98. env/
  99. venv/
  100. ENV/
  101. env.bak/
  102. venv.bak/
  103. pip-selfcheck.json
  104. # End of https://www.gitignore.io/api/python,virtualenv