.gitignore 103 B

1234567891011121314
  1. # python-stuff
  2. *.egg-info/
  3. .eggs
  4. dist/
  5. build/
  6. *.pyc
  7. # testing
  8. .coverage
  9. env/
  10. *.log
  11. # editors
  12. .vscode/