.gitignore 2.1 KB

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