You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

.gitignore 694B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. # Byte-compiled / optimized / DLL files
  2. __pycache__/
  3. *.py[cod]
  4. # C extensions
  5. *.so
  6. # Distribution / packaging
  7. .Python
  8. env/
  9. build/
  10. develop-eggs/
  11. dist/
  12. downloads/
  13. eggs/
  14. .eggs/
  15. lib/
  16. lib64/
  17. parts/
  18. sdist/
  19. var/
  20. *.egg-info/
  21. .installed.cfg
  22. *.egg
  23. # PyInstaller
  24. # Usually these files are written by a python script from a template
  25. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  26. *.manifest
  27. *.spec
  28. # Installer logs
  29. pip-log.txt
  30. pip-delete-this-directory.txt
  31. # Unit test / coverage reports
  32. htmlcov/
  33. .tox/
  34. .coverage
  35. .coverage.*
  36. .cache
  37. nosetests.xml
  38. coverage.xml
  39. # Translations
  40. *.mo
  41. *.pot
  42. # Django stuff:
  43. *.log
  44. # Sphinx documentation
  45. docs/_build/
  46. # PyBuilder
  47. target/