.gitignore 942 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. .old
  2. data
  3. # Byte-compiled / optimized / DLL files
  4. __pycache__/
  5. *.py[cod]
  6. *.pyc
  7. *.pyo
  8. *.pyd
  9. .Python
  10. # C extensions
  11. *.so
  12. # Distribution / packaging
  13. .Python
  14. env/
  15. build/
  16. develop-eggs/
  17. dist/
  18. downloads/
  19. eggs/
  20. .eggs/
  21. lib/
  22. lib64/
  23. parts/
  24. sdist/
  25. var/
  26. wheels/
  27. pip-wheel-metadata/
  28. share/python-wheels/
  29. *.egg-info/
  30. .installed.cfg
  31. *.egg
  32. # PyInstaller
  33. # Usually these files are written by a python script from a template
  34. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  35. *.manifest
  36. *.spec
  37. # Installer logs
  38. pip-log.txt
  39. pip-delete-this-directory.txt
  40. # Unit test / coverage reports
  41. htmlcov/
  42. .tox/
  43. .nox/
  44. .coverage
  45. .coverage.*
  46. .cache
  47. nosetests.xml
  48. coverage.xml
  49. *.cover
  50. .hypothesis/
  51. .pytest_cache/
  52. # Jupyter Notebook
  53. .ipynb_checkpoints
  54. # IPython
  55. profile_default/
  56. ipython_config.py
  57. # Pyre type checker
  58. .pyre/
  59. # VS Code directories
  60. .vscode/
  61. # PyCharm directories
  62. .idea/
  63. # Other files
  64. *.sqlite3
  65. *.swp
  66. *.swo
  67. *.swn
  68. .DS_Store