Queer European MD passionate about IT

.gitignore 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. # PyCharm IDE folder
  2. .idea/
  3. # local_* files
  4. local_*
  5. # Python virtual environment
  6. venv/
  7. # databases
  8. *.db
  9. *.json
  10. # Data folder
  11. davtelepot/data/*
  12. !davtelepot/data/__init__.py
  13. *.txt
  14. !requirements.txt
  15. # nohup output file (nohup lets a script run after terminal closes)
  16. *nohup.out
  17. # my_config.sh
  18. my_config.sh
  19. # Test
  20. run_test.sh
  21. davtelepot/test???.py
  22. # ---> Python
  23. # Byte-compiled / optimized / DLL files
  24. __pycache__/
  25. *.py[cod]
  26. *$py.class
  27. .ipynb_checkpoints/
  28. # C extensions
  29. *.so
  30. # Distribution / packaging
  31. .Python
  32. env/
  33. .venv/
  34. build/
  35. develop-eggs/
  36. dist/
  37. downloads/
  38. eggs/
  39. .eggs/
  40. lib/
  41. lib64/
  42. parts/
  43. sdist/
  44. var/
  45. *.egg-info/
  46. .installed.cfg
  47. *.egg
  48. # PyInstaller
  49. # Usually these files are written by a python script from a template
  50. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  51. *.manifest
  52. *.spec
  53. # Installer logs
  54. pip-log.txt
  55. pip-delete-this-directory.txt
  56. # Unit test / coverage reports
  57. htmlcov/
  58. .tox/
  59. .coverage
  60. .coverage.*
  61. .cache
  62. nosetests.xml
  63. coverage.xml
  64. *,cover
  65. # Translations
  66. *.mo
  67. *.pot
  68. # Django stuff:
  69. *.log
  70. # Sphinx documentation
  71. docs/_build/
  72. # PyBuilder
  73. target/