.gitignore 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. # Generated by Cargo
  2. target/
  3. # Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
  4. # More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
  5. Cargo.lock
  6. .vscode/ltex.dictionary.en-US.txt
  7. # Created by https://www.toptal.com/developers/gitignore/api/python,jupyternotebooks
  8. # Edit at https://www.toptal.com/developers/gitignore?templates=python,jupyternotebooks
  9. ### JupyterNotebooks ###
  10. # gitignore template for Jupyter Notebooks
  11. # website: http://jupyter.org/
  12. .ipynb_checkpoints
  13. */.ipynb_checkpoints/*
  14. # IPython
  15. profile_default/
  16. ipython_config.py
  17. # Remove previous ipynb_checkpoints
  18. # git rm -r .ipynb_checkpoints/
  19. ### Python ###
  20. # Byte-compiled / optimized / DLL files
  21. __pycache__/
  22. *.py[cod]
  23. *$py.class
  24. # C extensions
  25. *.so
  26. # Distribution / packaging
  27. .Python
  28. build/
  29. develop-eggs/
  30. dist/
  31. downloads/
  32. eggs/
  33. .eggs/
  34. lib/
  35. lib64/
  36. parts/
  37. sdist/
  38. var/
  39. wheels/
  40. share/python-wheels/
  41. *.egg-info/
  42. .installed.cfg
  43. *.egg
  44. MANIFEST
  45. # PyInstaller
  46. # Usually these files are written by a python script from a template
  47. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  48. *.manifest
  49. *.spec
  50. # Installer logs
  51. pip-log.txt
  52. pip-delete-this-directory.txt
  53. # Unit test / coverage reports
  54. htmlcov/
  55. .tox/
  56. .nox/
  57. .coverage
  58. .coverage.*
  59. .cache
  60. nosetests.xml
  61. coverage.xml
  62. *.cover
  63. *.py,cover
  64. .hypothesis/
  65. .pytest_cache/
  66. cover/
  67. # Translations
  68. *.mo
  69. *.pot
  70. # Django stuff:
  71. *.log
  72. local_settings.py
  73. db.sqlite3
  74. db.sqlite3-journal
  75. # Flask stuff:
  76. instance/
  77. .webassets-cache
  78. # Scrapy stuff:
  79. .scrapy
  80. # Sphinx documentation
  81. docs/_build/
  82. # PyBuilder
  83. .pybuilder/
  84. target/
  85. # Jupyter Notebook
  86. # IPython
  87. # pyenv
  88. # For a library or package, you might want to ignore these files since the code is
  89. # intended to run in multiple environments; otherwise, check them in:
  90. # .python-version
  91. # pipenv
  92. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  93. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  94. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  95. # install all needed dependencies.
  96. #Pipfile.lock
  97. # PEP 582; used by e.g. github.com/David-OConnor/pyflow
  98. __pypackages__/
  99. # Celery stuff
  100. celerybeat-schedule
  101. celerybeat.pid
  102. # SageMath parsed files
  103. *.sage.py
  104. # Environments
  105. .env
  106. .venv
  107. env/
  108. venv/
  109. ENV/
  110. env.bak/
  111. venv.bak/
  112. # Spyder project settings
  113. .spyderproject
  114. .spyproject
  115. # Rope project settings
  116. .ropeproject
  117. # mkdocs documentation
  118. /site
  119. # mypy
  120. .mypy_cache/
  121. .dmypy.json
  122. dmypy.json
  123. # Pyre type checker
  124. .pyre/
  125. # pytype static type analyzer
  126. .pytype/
  127. # Cython debug symbols
  128. cython_debug/
  129. # End of https://www.toptal.com/developers/gitignore/api/python,jupyternotebooks