.gitignore 115 B

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