Leyk lightener application for raspberry pi and piface module.
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

.gitignore 1.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. # ---> Python
  2. # Byte-compiled / optimized / DLL files
  3. __pycache__/
  4. *.py[cod]
  5. *$py.class
  6. config.py
  7. # C extensions
  8. *.so
  9. # Distribution / packaging
  10. .Python
  11. build/
  12. develop-eggs/
  13. dist/
  14. downloads/
  15. eggs/
  16. .eggs/
  17. lib/
  18. lib64/
  19. parts/
  20. sdist/
  21. var/
  22. wheels/
  23. *.egg-info/
  24. .installed.cfg
  25. *.egg
  26. MANIFEST
  27. # PyInstaller
  28. # Usually these files are written by a python script from a template
  29. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  30. *.manifest
  31. *.spec
  32. # Installer logs
  33. pip-log.txt
  34. pip-delete-this-directory.txt
  35. # Unit test / coverage reports
  36. htmlcov/
  37. .tox/
  38. .nox/
  39. .coverage
  40. .coverage.*
  41. .cache
  42. nosetests.xml
  43. coverage.xml
  44. *.cover
  45. .hypothesis/
  46. .pytest_cache/
  47. # Translations
  48. *.mo
  49. *.pot
  50. # Django stuff:
  51. *.log
  52. local_settings.py
  53. db.sqlite3
  54. # Flask stuff:
  55. instance/
  56. .webassets-cache
  57. # Scrapy stuff:
  58. .scrapy
  59. # Sphinx documentation
  60. docs/_build/
  61. # PyBuilder
  62. target/
  63. # Jupyter Notebook
  64. .ipynb_checkpoints
  65. # IPython
  66. profile_default/
  67. ipython_config.py
  68. # pyenv
  69. .python-version
  70. # celery beat schedule file
  71. celerybeat-schedule
  72. # SageMath parsed files
  73. *.sage.py
  74. # Environments
  75. .env
  76. .venv
  77. env/
  78. venv/
  79. ENV/
  80. env.bak/
  81. venv.bak/
  82. # Spyder project settings
  83. .spyderproject
  84. .spyproject
  85. # Rope project settings
  86. .ropeproject
  87. # mkdocs documentation
  88. /site
  89. # mypy
  90. .mypy_cache/
  91. .dmypy.json
  92. dmypy.json
  93. # Pyre type checker
  94. .pyre/