Queer European MD passionate about IT

.gitignore 924 B

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