.gitignore 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. venv/
  2. # auto generated
  3. README.rst
  4. # Byte-compiled / optimized / DLL files
  5. __pycache__/
  6. *.py[cod]
  7. # C extensions
  8. *.so
  9. # Distribution / packaging
  10. .Python
  11. env/
  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. # Translations
  44. *.mo
  45. *.pot
  46. # Django stuff:
  47. *.log
  48. # Sphinx documentation
  49. docs/_build/
  50. # PyBuilder
  51. target/
  52. # Editors and IDEs
  53. .ropeproject/
  54. .python-version
  55. examples/**/ve/
  56. examples/**/venv/
  57. examples/**/node_modules/
  58. examples/**/assets/bundles/
  59. examples/**/assets/webpack-stats.json
  60. tests/ve/
  61. tests/ve3/
  62. tests/venv/
  63. tests/venv3/
  64. tests/node_modules/
  65. tests/assets/bundles/
  66. tests/webpack-stats.json
  67. tests/webpack-stats-app2.json
  68. # PyCharm IDE
  69. .idea
  70. .vscode