Queer European MD passionate about IT

.gitignore 788 B

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