.gitignore 556 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. # Byte-compiled / optimized / DLL files
  2. __pycache__/
  3. *.py[cod]
  4. *$py.class
  5. *pyx
  6. # Build & packaging
  7. build/*
  8. dist/*
  9. *egg-info/*
  10. _version.py
  11. # Jupyter Notebook
  12. .ipynb_checkpoints
  13. prototype*
  14. # Scrapy stuff:
  15. .scrapy
  16. draft/
  17. # Environments
  18. .env
  19. .venv
  20. env/
  21. venv/
  22. ENV/
  23. env.bak/
  24. venv.bak/
  25. # VS Code
  26. .vscode/
  27. # Testing
  28. .pytest_cache/
  29. # Packaging
  30. build/
  31. dist/
  32. # Prototyping files & manual testing
  33. proto/
  34. # Data & logs
  35. *.csv
  36. # Private configurations
  37. private.yaml
  38. # Some other random stuff
  39. bash.exe.stackdump
  40. # Sphinx documentation
  41. docs/_build/
  42. # tox
  43. .tox/