Queer European MD passionate about IT

.gitignore 875 B

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