Test Smart Brain implementation
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

.gitignore 1.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. testresults
  2. # ---> VirtualEnv
  3. # Virtualenv
  4. # http://iamzed.com/2009/05/07/a-primer-on-virtualenv/
  5. .Python
  6. [Bb]in
  7. [Ii]nclude
  8. [Ll]ib
  9. [Ll]ib64
  10. [Ll]ocal
  11. [Ss]cripts
  12. pyvenv.cfg
  13. .venv
  14. pip-selfcheck.json
  15. # ---> Backup
  16. *.bak
  17. *.gho
  18. *.ori
  19. *.orig
  20. *.tmp
  21. # ---> Python
  22. # Byte-compiled / optimized / DLL files
  23. __pycache__/
  24. *.py[cod]
  25. *$py.class
  26. # C extensions
  27. *.so
  28. # Distribution / packaging
  29. .Python
  30. build/
  31. develop-eggs/
  32. dist/
  33. downloads/
  34. eggs/
  35. .eggs/
  36. lib/
  37. lib64/
  38. parts/
  39. sdist/
  40. var/
  41. wheels/
  42. *.egg-info/
  43. .installed.cfg
  44. *.egg
  45. MANIFEST
  46. # PyInstaller
  47. # Usually these files are written by a python script from a template
  48. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  49. *.manifest
  50. *.spec
  51. # Installer logs
  52. pip-log.txt
  53. pip-delete-this-directory.txt
  54. # Unit test / coverage reports
  55. htmlcov/
  56. .tox/
  57. .nox/
  58. .coverage
  59. .coverage.*
  60. .cache
  61. nosetests.xml
  62. coverage.xml
  63. *.cover
  64. .hypothesis/
  65. .pytest_cache/
  66. # Translations
  67. *.mo
  68. *.pot
  69. # Django stuff:
  70. *.log
  71. local_settings.py
  72. db.sqlite3
  73. # Flask stuff:
  74. instance/
  75. .webassets-cache
  76. # Scrapy stuff:
  77. .scrapy
  78. # Sphinx documentation
  79. docs/_build/
  80. # PyBuilder
  81. target/
  82. # Jupyter Notebook
  83. .ipynb_checkpoints
  84. # IPython
  85. profile_default/
  86. ipython_config.py
  87. # pyenv
  88. .python-version
  89. # celery beat schedule file
  90. celerybeat-schedule
  91. # SageMath parsed files
  92. *.sage.py
  93. # Environments
  94. .env
  95. .venv
  96. env/
  97. venv/
  98. ENV/
  99. env.bak/
  100. venv.bak/
  101. # Spyder project settings
  102. .spyderproject
  103. .spyproject
  104. # Rope project settings
  105. .ropeproject
  106. # mkdocs documentation
  107. /site
  108. # mypy
  109. .mypy_cache/
  110. .dmypy.json
  111. dmypy.json
  112. # Pyre type checker
  113. .pyre/
  114. # ---> Linux
  115. *~
  116. # temporary files which can be created if a process still has a handle open of a deleted file
  117. .fuse_hidden*
  118. # KDE directory preferences
  119. .directory
  120. # Linux trash folder which might appear on any partition or disk
  121. .Trash-*
  122. # .nfs files are created when an open file is removed but is still being accessed
  123. .nfs*